mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-01 14:10:53 +00:00
Drop VS public signing workaround
They had enough of time to fix their stupidity
This commit is contained in:
@@ -53,15 +53,15 @@
|
||||
<WarningsNotAsErrors>CS8002,IL2026,IL2104,NU1901,NU1902,NU1903,NU1904</WarningsNotAsErrors>
|
||||
</PropertyGroup>
|
||||
|
||||
<!-- Enable public signing if not part of Visual Studio, which is too stupid to understand what public signing is -->
|
||||
<PropertyGroup Condition="'$(Configuration)' == 'Release' AND '$(BuildingInsideVisualStudio)' != 'true'">
|
||||
<!-- Enable public signing -->
|
||||
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
||||
<AssemblyOriginatorKeyFile>../resources/ArchiSteamFarm.snk.pub</AssemblyOriginatorKeyFile>
|
||||
<DefineConstants>$(DefineConstants);ASF_SIGNED_BUILD</DefineConstants>
|
||||
<PublicSign>true</PublicSign>
|
||||
<SignAssembly>true</SignAssembly>
|
||||
</PropertyGroup>
|
||||
|
||||
<!-- Private SNK signing -->
|
||||
<!-- Private SNK signing, if provided with secret -->
|
||||
<PropertyGroup Condition="'$(Configuration)' == 'Release' AND EXISTS('resources/ArchiSteamFarm.snk')">
|
||||
<AssemblyOriginatorKeyFile>../resources/ArchiSteamFarm.snk</AssemblyOriginatorKeyFile>
|
||||
<DefineConstants>$(DefineConstants);ASF_SIGNED_BUILD</DefineConstants>
|
||||
|
||||
Reference in New Issue
Block a user