2021-09-09 18:59:58 -05:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2016-07-06 17:37:25 +01:00
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
2019-06-25 12:36:27 +01:00
|
|
|
|
<DefineConstants>TRACE;DEBUG;TEST_WIN64</DefineConstants>
|
2019-04-17 09:31:28 +01:00
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
2019-05-06 12:33:29 +01:00
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2016-07-06 17:37:25 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
2019-05-01 15:55:22 +01:00
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
2019-05-06 12:33:29 +01:00
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2016-07-06 17:37:25 +01:00
|
|
|
|
</PropertyGroup>
|
2016-07-07 16:55:08 +01:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
|
|
|
|
<OutputPath>bin\x64\Debug\</OutputPath>
|
|
|
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
2019-05-06 12:33:29 +01:00
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2016-07-07 16:55:08 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
|
|
|
|
<OutputPath>bin\x64\Release\</OutputPath>
|
|
|
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
2019-05-06 12:33:29 +01:00
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2016-07-07 16:55:08 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
|
|
|
|
<OutputPath>bin\x86\Debug\</OutputPath>
|
2019-05-01 15:55:22 +01:00
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
2016-07-07 16:55:08 +01:00
|
|
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
2019-05-06 12:33:29 +01:00
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2016-07-07 16:55:08 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
|
|
|
|
|
<OutputPath>bin\x86\Release\</OutputPath>
|
2019-05-01 15:55:22 +01:00
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
2016-07-07 16:55:08 +01:00
|
|
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
2019-05-06 12:33:29 +01:00
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2016-07-07 16:55:08 +01:00
|
|
|
|
</PropertyGroup>
|
2021-09-09 18:59:58 -05:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
|
|
|
</PropertyGroup>
|
2016-07-06 17:37:25 +01:00
|
|
|
|
<ItemGroup>
|
2021-09-09 18:59:58 -05:00
|
|
|
|
<ProjectReference Include="..\Facepunch.Steamworks\Facepunch.Steamworks.Win64.csproj" />
|
2016-07-15 17:26:06 +01:00
|
|
|
|
</ItemGroup>
|
2016-11-11 14:51:04 +00:00
|
|
|
|
<ItemGroup>
|
2021-09-09 18:59:58 -05:00
|
|
|
|
<Content Include="steam_api64.dll">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2016-11-11 14:51:04 +00:00
|
|
|
|
</ItemGroup>
|
2017-08-30 23:10:55 +01:00
|
|
|
|
<ItemGroup>
|
2022-11-29 18:17:43 +01: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-30 23:10:55 +01:00
|
|
|
|
</ItemGroup>
|
2020-08-18 11:47:24 +01:00
|
|
|
|
<ItemGroup>
|
2021-09-09 18:59:58 -05:00
|
|
|
|
<Compile Remove="ClanTest.cs" />
|
2020-08-18 11:47:24 +01:00
|
|
|
|
</ItemGroup>
|
2016-07-06 17:37:25 +01:00
|
|
|
|
</Project>
|