2021-09-10 02:59:58 +03:00
|
|
|
|
<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' ">
|
2019-05-01 17:55:22 +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>
|
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>
|
2019-05-01 17:55:22 +03:00
|
|
|
|
<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>
|
2019-05-01 17:55:22 +03:00
|
|
|
|
<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>
|
2021-09-10 02:59:58 +03:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
|
|
|
</PropertyGroup>
|
2016-07-06 19:37:25 +03:00
|
|
|
|
<ItemGroup>
|
2021-09-10 02:59:58 +03:00
|
|
|
|
<ProjectReference Include="..\Facepunch.Steamworks\Facepunch.Steamworks.Win64.csproj" />
|
2016-07-15 19:26:06 +03:00
|
|
|
|
</ItemGroup>
|
2016-11-11 17:51:04 +03:00
|
|
|
|
<ItemGroup>
|
2021-09-10 02:59:58 +03:00
|
|
|
|
<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>
|
2022-11-29 20:17:43 +03:00
|
|
|
|
<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>
|
2021-09-10 02:59:58 +03:00
|
|
|
|
<Compile Remove="ClanTest.cs" />
|
2020-08-18 13:47:24 +03:00
|
|
|
|
</ItemGroup>
|
2016-07-06 19:37:25 +03:00
|
|
|
|
</Project>
|