2017-07-10 06:20:15 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2017-07-13 04:08:52 +00:00
|
|
|
<Authors>JustArchi</Authors>
|
|
|
|
<Company>JustArchi</Company>
|
2020-02-02 13:08:01 +00:00
|
|
|
<Copyright>Copyright © ArchiSteamFarm 2015-2020</Copyright>
|
2018-07-04 03:43:51 +00:00
|
|
|
<DefaultItemExcludes>$(DefaultItemExcludes);debug/**;out/**</DefaultItemExcludes>
|
2018-03-17 23:56:31 +00:00
|
|
|
<Description>ASF is an application that allows you to farm steam cards using multiple steam accounts simultaneously.</Description>
|
|
|
|
<ErrorReport>none</ErrorReport>
|
2019-10-05 20:35:39 +00:00
|
|
|
<LangVersion>8.0</LangVersion>
|
2018-03-17 23:56:31 +00:00
|
|
|
<NoWarn />
|
2018-06-10 23:38:35 +00:00
|
|
|
<OutputType>Library</OutputType>
|
2019-11-07 20:01:14 +00:00
|
|
|
<PackageIcon>../resources/ASF.ico</PackageIcon>
|
|
|
|
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
|
2019-01-10 21:33:07 +00:00
|
|
|
<PackageProjectUrl>https://github.com/JustArchiNET/ArchiSteamFarm</PackageProjectUrl>
|
2017-07-13 04:08:52 +00:00
|
|
|
<RepositoryType>Git</RepositoryType>
|
2019-01-10 21:33:07 +00:00
|
|
|
<RepositoryUrl>https://github.com/JustArchiNET/ArchiSteamFarm.git</RepositoryUrl>
|
2020-04-18 13:23:07 +00:00
|
|
|
<RollForward>LatestMajor</RollForward>
|
2018-07-10 08:20:53 +00:00
|
|
|
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
|
2017-07-10 06:20:15 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2019-01-14 17:23:06 +00:00
|
|
|
<PropertyGroup Condition="'$(OS)' == 'Windows_NT' OR '$(ASFNetFramework)' != ''">
|
2019-12-04 17:33:51 +00:00
|
|
|
<TargetFrameworks>netcoreapp3.1;net48</TargetFrameworks>
|
2019-01-14 17:23:06 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(OS)' != 'Windows_NT' AND '$(ASFNetFramework)' == ''">
|
2019-12-04 17:33:51 +00:00
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
2019-01-14 17:23:06 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2017-12-07 08:10:56 +00:00
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
2017-07-10 06:20:15 +00:00
|
|
|
<DebugSymbols>false</DebugSymbols>
|
2018-03-17 23:56:31 +00:00
|
|
|
<DebugType>none</DebugType>
|
2017-12-07 08:10:56 +00:00
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
|
|
<WarningsAsErrors />
|
2017-07-10 06:20:15 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2019-06-13 15:54:19 +00:00
|
|
|
<PackageReference Include="ConfigureAwaitChecker.Analyzer" Version="4.0.0">
|
2019-04-30 12:56:09 +00:00
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
2020-04-24 10:04:53 +00:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
|
2020-04-01 09:13:21 +00:00
|
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.1.1" />
|
2020-04-02 01:12:50 +00:00
|
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.1.1" />
|
2017-07-10 06:20:15 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\ArchiSteamFarm\ArchiSteamFarm.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|