Facepunch.Steamworks/Facepunch.Steamworks.Test/Facepunch.Steamworks.TestWin64.csproj

54 lines
2.4 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2016-07-06 19:37:25 +03:00
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2019-06-25 14:36:27 +03:00
<DefineConstants>TRACE;DEBUG;TEST_WIN64</DefineConstants>
2019-04-17 11:31:28 +03:00
<PlatformTarget>x64</PlatformTarget>
2019-05-06 14:33:29 +03:00
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2016-07-06 19:37:25 +03:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>x64</PlatformTarget>
2019-05-06 14:33:29 +03:00
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2016-07-06 19:37:25 +03:00
</PropertyGroup>
2016-07-07 18:55:08 +03:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<OutputPath>bin\x64\Debug\</OutputPath>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
2019-05-06 14:33:29 +03:00
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2016-07-07 18:55:08 +03:00
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<OutputPath>bin\x64\Release\</OutputPath>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
2019-05-06 14:33:29 +03:00
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2016-07-07 18:55:08 +03:00
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<OutputPath>bin\x86\Debug\</OutputPath>
<PlatformTarget>x64</PlatformTarget>
2016-07-07 18:55:08 +03:00
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
2019-05-06 14:33:29 +03:00
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2016-07-07 18:55:08 +03:00
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<OutputPath>bin\x86\Release\</OutputPath>
<PlatformTarget>x64</PlatformTarget>
2016-07-07 18:55:08 +03:00
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
2019-05-06 14:33:29 +03:00
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2016-07-07 18:55:08 +03:00
</PropertyGroup>
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
2016-07-06 19:37:25 +03:00
<ItemGroup>
<ProjectReference Include="..\Facepunch.Steamworks\Facepunch.Steamworks.Win64.csproj" />
</ItemGroup>
2016-11-11 17:51:04 +03:00
<ItemGroup>
<Content Include="steam_api64.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
2016-11-11 17:51:04 +03:00
</ItemGroup>
2017-08-31 01:10:55 +03:00
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.*" />
<PackageReference Include="MSTest.TestAdapter" Version="2.0.0-beta4" />
<PackageReference Include="MSTest.TestFramework" Version="2.0.0-beta4" />
<PackageReference Include="Newtonsoft.Json" Version="9.0.2-beta1" />
2017-08-31 01:10:55 +03:00
</ItemGroup>
2020-08-18 13:47:24 +03:00
<ItemGroup>
<Compile Remove="ClanTest.cs" />
2020-08-18 13:47:24 +03:00
</ItemGroup>
2016-07-06 19:37:25 +03:00
</Project>