Updates for 2.0.0 support:

* Bumped .NET Framework version to 4.7.1
* Signed the assembly
This commit is contained in:
Martynas Gestautas 2021-09-04 20:37:31 +03:00
parent b4a0eb38a9
commit 0c801c48c3
4 changed files with 14 additions and 2 deletions

2
.gitignore vendored
View File

@ -4,6 +4,8 @@
##
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
project/Terkoiz.Freecam/key.snk
# User-specific files
*.rsuser
*.suo

Binary file not shown.

View File

@ -1,7 +1,7 @@
{
"name": "Freecam",
"author": "Terkoiz",
"version": "1.0.0",
"version": "1.0.1",
"license": "NCSA Open Source",
"dependencies": {}
}

View File

@ -9,9 +9,10 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Terkoiz.Freecam</RootNamespace>
<AssemblyName>Terkoiz.Freecam</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
@ -30,6 +31,12 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>key.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="0Harmony">
<HintPath>..\Shared\References\0Harmony.dll</HintPath>
@ -79,5 +86,8 @@
<Private>False</Private>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="key.snk" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>