2020-05-23 18:11:31 +00:00
|
|
|
<Project>
|
2021-07-12 19:45:17 +00:00
|
|
|
<PropertyGroup>
|
2024-09-19 12:09:10 +00:00
|
|
|
<Version>6.0.7.4</Version>
|
2021-07-12 19:45:17 +00:00
|
|
|
</PropertyGroup>
|
2020-05-23 18:11:31 +00:00
|
|
|
|
2021-07-12 19:45:17 +00:00
|
|
|
<PropertyGroup>
|
2022-11-14 22:42:44 +00:00
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2021-07-12 19:45:17 +00:00
|
|
|
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
|
|
|
|
<ApplicationIcon>../resources/ASF.ico</ApplicationIcon>
|
|
|
|
<Authors>JustArchi</Authors>
|
2022-04-02 11:58:55 +00:00
|
|
|
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
|
2021-07-12 19:45:17 +00:00
|
|
|
<Company>JustArchiNET</Company>
|
2021-10-11 22:57:29 +00:00
|
|
|
<Copyright>Copyright © 2015-$([System.DateTime]::UtcNow.Year) $(Company)</Copyright>
|
2021-07-12 19:45:17 +00:00
|
|
|
<Description>ASF is a C# application with primary purpose of idling Steam cards from multiple accounts simultaneously.</Description>
|
|
|
|
<Deterministic>true</Deterministic>
|
|
|
|
<ErrorReport>none</ErrorReport>
|
|
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
|
|
|
|
<NeutralLanguage>en</NeutralLanguage>
|
2024-07-19 23:21:06 +00:00
|
|
|
<NoWarn>CS1591</NoWarn>
|
2021-07-12 19:45:17 +00:00
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<PackageIcon>../resources/ASF.ico</PackageIcon>
|
|
|
|
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
|
2021-10-11 22:57:29 +00:00
|
|
|
<PackageProjectUrl>https://github.com/$(Company)/ArchiSteamFarm</PackageProjectUrl>
|
2021-08-07 12:12:57 +00:00
|
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
2021-10-11 22:57:29 +00:00
|
|
|
<PackageReleaseNotes>$(PackageProjectUrl)/releases</PackageReleaseNotes>
|
2021-08-07 12:12:57 +00:00
|
|
|
<RepositoryBranch>main</RepositoryBranch>
|
2021-07-12 19:45:17 +00:00
|
|
|
<RepositoryType>Git</RepositoryType>
|
2021-10-11 22:57:29 +00:00
|
|
|
<RepositoryUrl>$(PackageProjectUrl).git</RepositoryUrl>
|
2021-07-12 19:45:17 +00:00
|
|
|
<RollForward>LatestMajor</RollForward>
|
2023-02-09 13:08:39 +00:00
|
|
|
<RuntimeIdentifiers>linux-arm;linux-arm64;linux-x64;osx-arm64;osx-x64;win-arm64;win-x64</RuntimeIdentifiers>
|
2023-11-14 20:04:40 +00:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2021-07-12 19:45:17 +00:00
|
|
|
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
|
|
|
|
</PropertyGroup>
|
2020-05-23 18:11:31 +00:00
|
|
|
|
2021-07-12 19:45:17 +00:00
|
|
|
<PropertyGroup Condition="'$(ASFVariant)' != ''">
|
|
|
|
<DefineConstants>$(DefineConstants);ASF_VARIANT_$(ASFVariant.Replace('-', '_').ToUpperInvariant())</DefineConstants>
|
|
|
|
</PropertyGroup>
|
2020-05-23 18:11:31 +00:00
|
|
|
|
2024-09-16 15:58:35 +00:00
|
|
|
<PropertyGroup Condition="'$(PublishTrimmed)' == 'true'">
|
|
|
|
<DefineConstants>$(DefineConstants);ASF_RUNTIME_TRIMMED</DefineConstants>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2021-10-31 23:47:15 +00:00
|
|
|
<!-- Default configuration for fast-debugging builds -->
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'DebugFast'">
|
|
|
|
<AnalysisMode>AllDisabledByDefault</AnalysisMode>
|
|
|
|
<DefineConstants>$(DefineConstants);DEBUG</DefineConstants>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2021-07-12 19:45:17 +00:00
|
|
|
<!-- Default configuration for release builds -->
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
2022-04-02 11:58:55 +00:00
|
|
|
<CheckForOverflowUnderflow>false</CheckForOverflowUnderflow>
|
2021-07-12 19:45:17 +00:00
|
|
|
<DebugSymbols>false</DebugSymbols>
|
|
|
|
<DebugType>none</DebugType>
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
2021-07-15 21:06:16 +00:00
|
|
|
<WarningsAsErrors />
|
2024-07-19 23:21:06 +00:00
|
|
|
<WarningsNotAsErrors>CS8002,IL2026,IL2104,NU1901,NU1902,NU1903,NU1904</WarningsNotAsErrors>
|
2021-07-12 19:45:17 +00:00
|
|
|
</PropertyGroup>
|
2020-05-23 18:11:31 +00:00
|
|
|
|
2024-08-19 12:36:19 +00:00
|
|
|
<!-- Enable public signing -->
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
2021-12-13 14:47:13 +00:00
|
|
|
<AssemblyOriginatorKeyFile>../resources/ArchiSteamFarm.snk.pub</AssemblyOriginatorKeyFile>
|
|
|
|
<DefineConstants>$(DefineConstants);ASF_SIGNED_BUILD</DefineConstants>
|
|
|
|
<PublicSign>true</PublicSign>
|
|
|
|
<SignAssembly>true</SignAssembly>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2024-08-19 12:36:19 +00:00
|
|
|
<!-- Private SNK signing, if provided with secret -->
|
2021-08-01 10:56:08 +00:00
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release' AND EXISTS('resources/ArchiSteamFarm.snk')">
|
|
|
|
<AssemblyOriginatorKeyFile>../resources/ArchiSteamFarm.snk</AssemblyOriginatorKeyFile>
|
2021-12-13 14:47:13 +00:00
|
|
|
<DefineConstants>$(DefineConstants);ASF_SIGNED_BUILD</DefineConstants>
|
2021-08-01 10:56:08 +00:00
|
|
|
<PublicSign>false</PublicSign>
|
2021-12-13 14:47:13 +00:00
|
|
|
<SignAssembly>true</SignAssembly>
|
2021-08-01 10:56:08 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2022-11-16 15:07:29 +00:00
|
|
|
<!-- Trimming functionality as described on https://learn.microsoft.com/dotnet/core/deploying/trimming/trimming-options -->
|
2021-07-12 19:45:17 +00:00
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
|
|
|
<DebuggerSupport>false</DebuggerSupport>
|
|
|
|
<EnableUnsafeBinaryFormatterSerialization>false</EnableUnsafeBinaryFormatterSerialization>
|
|
|
|
<EnableUnsafeUTF7Encoding>false</EnableUnsafeUTF7Encoding>
|
|
|
|
<EventSourceSupport>false</EventSourceSupport>
|
|
|
|
<HttpActivityPropagationSupport>false</HttpActivityPropagationSupport>
|
2021-11-08 22:41:02 +00:00
|
|
|
<MetadataUpdaterSupport>false</MetadataUpdaterSupport>
|
2023-12-11 23:24:59 +00:00
|
|
|
<StackTraceSupport>false</StackTraceSupport>
|
2022-11-16 15:07:29 +00:00
|
|
|
<UseNativeHttpHandler>true</UseNativeHttpHandler>
|
|
|
|
<TrimMode>partial</TrimMode>
|
2021-07-12 19:45:17 +00:00
|
|
|
</PropertyGroup>
|
2020-05-23 18:11:31 +00:00
|
|
|
</Project>
|