mirror of
https://github.com/JustArchiNET/ArchiSteamFarm
synced 2024-11-10 23:24:36 +00:00
a93262aa9d
Bumps [ConfigureAwaitChecker.Analyzer](https://github.com/cincuranet/ConfigureAwaitChecker) from 3.0.0 to 4.0.0. - [Release notes](https://github.com/cincuranet/ConfigureAwaitChecker/releases) - [Commits](https://github.com/cincuranet/ConfigureAwaitChecker/commits) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
49 lines
2 KiB
XML
49 lines
2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<Authors>JustArchi</Authors>
|
|
<Company>JustArchi</Company>
|
|
<Copyright>Copyright © ArchiSteamFarm 2015-2019</Copyright>
|
|
<DefaultItemExcludes>$(DefaultItemExcludes);debug/**;out/**</DefaultItemExcludes>
|
|
<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>
|
|
<PackageIconUrl>https://github.com/JustArchiNET/ArchiSteamFarm/raw/master/resources/ASF.ico</PackageIconUrl>
|
|
<PackageLicenseUrl>http://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl>
|
|
<PackageProjectUrl>https://github.com/JustArchiNET/ArchiSteamFarm</PackageProjectUrl>
|
|
<RepositoryType>Git</RepositoryType>
|
|
<RepositoryUrl>https://github.com/JustArchiNET/ArchiSteamFarm.git</RepositoryUrl>
|
|
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(OS)' == 'Windows_NT' OR '$(ASFNetFramework)' != ''">
|
|
<TargetFrameworks>netcoreapp2.2;net472</TargetFrameworks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(OS)' != 'Windows_NT' AND '$(ASFNetFramework)' == ''">
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
|
<DebugSymbols>false</DebugSymbols>
|
|
<DebugType>none</DebugType>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<WarningsAsErrors />
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="ConfigureAwaitChecker.Analyzer" Version="4.0.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.1.1" />
|
|
<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>
|