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 ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
project/Terkoiz.Freecam/key.snk
# User-specific files # User-specific files
*.rsuser *.rsuser
*.suo *.suo

Binary file not shown.

View File

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

View File

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