You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.4 KiB
38 lines
1.4 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<!--<TargetFrameworks>net20</TargetFrameworks>-->
|
|
<!--<TargetFrameworks>net40</TargetFrameworks>-->
|
|
<!--<TargetFrameworks>net461</TargetFrameworks>-->
|
|
<TargetFrameworks>net461</TargetFrameworks>
|
|
</PropertyGroup>
|
|
|
|
<!-- .NET Framework 4.6.1 -->
|
|
<PropertyGroup Condition="'$(TargetFramework)'=='net461'">
|
|
<AssemblyTitle>$(AssemblyName) - .NET Framework 4.6.1</AssemblyTitle>
|
|
<DefineConstants>NETFX;NET461;NET45;HAVE_ASYNC;HAVE_BIG_INTEGER;$(DefineConstants);$(AdditionalConstants)</DefineConstants>
|
|
</PropertyGroup>
|
|
<ItemGroup Condition="'$(TargetFramework)'=='net461'">
|
|
<Reference Include="CustomMarshalers" />
|
|
<Reference Include="Microsoft.CSharp" />
|
|
<Reference Include="PresentationCore" />
|
|
<Reference Include="System.Core" />
|
|
<Reference Include="System.Configuration" />
|
|
<Reference Include="System.Design" />
|
|
<Reference Include="System.Drawing" />
|
|
<Reference Include="System.Management" />
|
|
<Reference Include="System.Runtime.Caching" />
|
|
<Reference Include="System.Security" />
|
|
<Reference Include="System.Speech" />
|
|
<Reference Include="System.Transactions" />
|
|
<Reference Include="System.Web" />
|
|
<Reference Include="System.Windows.Forms" />
|
|
<Reference Include="WindowsBase" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Apewer\Apewer.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|