Files
ArchiSteamFarm/ArchiSteamFarm.Tests/ArchiSteamFarm.Tests.csproj

42 lines
1.8 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2017-07-13 06:08:52 +02:00
<ApplicationIcon>ASF.ico</ApplicationIcon>
<Authors>JustArchi</Authors>
<Company>JustArchi</Company>
2018-03-18 00:56:31 +01:00
<Copyright>Copyright © ArchiSteamFarm 2015-2018</Copyright>
<DefaultItemExcludes>$(DefaultItemExcludes);debug/**;out/**</DefaultItemExcludes>
2018-03-18 00:56:31 +01:00
<Description>ASF is an application that allows you to farm steam cards using multiple steam accounts simultaneously.</Description>
<ErrorReport>none</ErrorReport>
<LangVersion>latest</LangVersion>
<NoWarn />
<OutputType>Library</OutputType>
2018-03-18 00:56:31 +01:00
<PackageIconUrl>https://github.com/JustArchi/ArchiSteamFarm/raw/master/resources/ASF.ico</PackageIconUrl>
2017-07-13 06:08:52 +02:00
<PackageLicenseUrl>http://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/JustArchi/ArchiSteamFarm</PackageProjectUrl>
<RepositoryType>Git</RepositoryType>
2018-03-18 00:56:31 +01:00
<RepositoryUrl>https://github.com/JustArchi/ArchiSteamFarm.git</RepositoryUrl>
2018-09-16 16:24:44 +02:00
<TargetFrameworks>netcoreapp2.1;net472</TargetFrameworks>
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
</PropertyGroup>
2017-12-07 09:10:56 +01:00
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<DebugSymbols>false</DebugSymbols>
2018-03-18 00:56:31 +01:00
<DebugType>none</DebugType>
2017-12-07 09:10:56 +01:00
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
</PropertyGroup>
<ItemGroup>
2018-07-11 16:31:46 +02:00
<PackageReference Include="ConfigureAwaitChecker.Analyzer" Version="2.0.0" />
2018-10-11 18:24:54 +02:00
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
2018-11-28 03:13:38 +01:00
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ArchiSteamFarm\ArchiSteamFarm.csproj" />
</ItemGroup>
</Project>