Skip to content

Commit 4935359

Browse files
Added .NET 3.5 support
Added .NET 3.5 support.
1 parent fdf0bc6 commit 4935359

21 files changed

Lines changed: 2471 additions & 16 deletions
Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6+
<ProductVersion>
7+
</ProductVersion>
8+
<SchemaVersion>
9+
</SchemaVersion>
10+
<ProjectGuid>{8D0E884C-CE78-472F-916E-5CC64819FFC3}</ProjectGuid>
11+
<OutputType>Library</OutputType>
12+
<RootNamespace>InputHelperLib</RootNamespace>
13+
<AssemblyName>InputHelper .NET 3.5</AssemblyName>
14+
<FileAlignment>512</FileAlignment>
15+
<MyType>Windows</MyType>
16+
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
17+
<TargetFrameworkProfile />
18+
</PropertyGroup>
19+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
20+
<DebugSymbols>true</DebugSymbols>
21+
<DebugType>full</DebugType>
22+
<DefineDebug>true</DefineDebug>
23+
<DefineTrace>true</DefineTrace>
24+
<OutputPath>bin\Debug\</OutputPath>
25+
<DocumentationFile>InputHelper .NET 3.5.xml</DocumentationFile>
26+
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
27+
</PropertyGroup>
28+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
29+
<DebugType>pdbonly</DebugType>
30+
<DefineDebug>false</DefineDebug>
31+
<DefineTrace>true</DefineTrace>
32+
<Optimize>true</Optimize>
33+
<OutputPath>bin\Release\</OutputPath>
34+
<DocumentationFile>InputHelper .NET 3.5.xml</DocumentationFile>
35+
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
36+
</PropertyGroup>
37+
<PropertyGroup>
38+
<OptionExplicit>On</OptionExplicit>
39+
</PropertyGroup>
40+
<PropertyGroup>
41+
<OptionCompare>Binary</OptionCompare>
42+
</PropertyGroup>
43+
<PropertyGroup>
44+
<OptionStrict>Off</OptionStrict>
45+
</PropertyGroup>
46+
<PropertyGroup>
47+
<OptionInfer>On</OptionInfer>
48+
</PropertyGroup>
49+
<ItemGroup>
50+
<Reference Include="System" />
51+
<Reference Include="System.Data" />
52+
<Reference Include="System.Drawing" />
53+
<Reference Include="System.Windows.Forms" />
54+
<Reference Include="System.Xml" />
55+
<Reference Include="System.Core" />
56+
<Reference Include="System.Xml.Linq" />
57+
<Reference Include="System.Data.DataSetExtensions" />
58+
</ItemGroup>
59+
<ItemGroup>
60+
<Import Include="Microsoft.VisualBasic" />
61+
<Import Include="System" />
62+
<Import Include="System.Collections" />
63+
<Import Include="System.Collections.Generic" />
64+
<Import Include="System.Data" />
65+
<Import Include="System.Diagnostics" />
66+
<Import Include="System.Linq" />
67+
<Import Include="System.Xml.Linq" />
68+
</ItemGroup>
69+
<ItemGroup>
70+
<Compile Include="InputHelper.vb" />
71+
<Compile Include="My Project\AssemblyInfo.vb" />
72+
<Compile Include="My Project\Application.Designer.vb">
73+
<AutoGen>True</AutoGen>
74+
<DependentUpon>Application.myapp</DependentUpon>
75+
</Compile>
76+
<Compile Include="My Project\Resources.Designer.vb">
77+
<AutoGen>True</AutoGen>
78+
<DesignTime>True</DesignTime>
79+
<DependentUpon>Resources.resx</DependentUpon>
80+
</Compile>
81+
<Compile Include="My Project\Settings.Designer.vb">
82+
<AutoGen>True</AutoGen>
83+
<DependentUpon>Settings.settings</DependentUpon>
84+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
85+
</Compile>
86+
</ItemGroup>
87+
<ItemGroup>
88+
<EmbeddedResource Include="My Project\Resources.resx">
89+
<Generator>VbMyResourcesResXFileCodeGenerator</Generator>
90+
<LastGenOutput>Resources.Designer.vb</LastGenOutput>
91+
<CustomToolNamespace>My.Resources</CustomToolNamespace>
92+
<SubType>Designer</SubType>
93+
</EmbeddedResource>
94+
</ItemGroup>
95+
<ItemGroup>
96+
<None Include="My Project\Application.myapp">
97+
<Generator>MyApplicationCodeGenerator</Generator>
98+
<LastGenOutput>Application.Designer.vb</LastGenOutput>
99+
</None>
100+
<None Include="My Project\Settings.settings">
101+
<Generator>SettingsSingleFileGenerator</Generator>
102+
<CustomToolNamespace>My</CustomToolNamespace>
103+
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
104+
</None>
105+
</ItemGroup>
106+
<ItemGroup>
107+
<Content Include="LICENSE.txt">
108+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
109+
</Content>
110+
</ItemGroup>
111+
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
112+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
113+
Other similar extension points exist, see Microsoft.Common.targets.
114+
<Target Name="BeforeBuild">
115+
</Target>
116+
<Target Name="AfterBuild">
117+
</Target>
118+
-->
119+
</Project>

0 commit comments

Comments
 (0)