From d70fcaa1d5948353f82bb5cd52950ad44add210d Mon Sep 17 00:00:00 2001 From: Kazumi Date: Tue, 15 Sep 2020 18:01:43 +0200 Subject: [PATCH] Upgrade to SDK-style .csproj file This enables dotnet CLI support and helps with moving to .NET 5 in the future. --- .gitignore | 3 +- Penumbra/Penumbra.csproj | 70 ++++++----------------------- Penumbra/Properties/AssemblyInfo.cs | 25 ----------- 3 files changed, 15 insertions(+), 83 deletions(-) diff --git a/.gitignore b/.gitignore index 7990fe70..bfedfd78 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .vs/ obj/ bin/ -*.user \ No newline at end of file +*.user +backup*/ \ No newline at end of file diff --git a/Penumbra/Penumbra.csproj b/Penumbra/Penumbra.csproj index 28f920c1..4a44fa09 100644 --- a/Penumbra/Penumbra.csproj +++ b/Penumbra/Penumbra.csproj @@ -1,37 +1,22 @@ - - - + - Debug - AnyCPU - {13C812E9-0D42-4B95-8646-40EEBF30636F} - Library - Properties - Penumbra - Penumbra - v4.7.2 - 512 - true - 8 + net472 + latest + Penumbra + absolute gangstas + Penumbra + Copyright © 2020 + 1.0.0.0 + 1.0.0.0 + bin\$(Configuration)\ + true - true full - false - bin\Debug\ DEBUG;TRACE - prompt - 4 - true pdbonly - true - bin\Release\ - TRACE - prompt - 4 - true @@ -54,42 +39,13 @@ $(AppData)\XIVLauncher\addon\Hooks\Lumina.dll False - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1.13.8 - + - - + \ No newline at end of file diff --git a/Penumbra/Properties/AssemblyInfo.cs b/Penumbra/Properties/AssemblyInfo.cs index 903879b5..ab45707e 100644 --- a/Penumbra/Properties/AssemblyInfo.cs +++ b/Penumbra/Properties/AssemblyInfo.cs @@ -1,18 +1,6 @@ using System.Reflection; using System.Runtime.InteropServices; -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("Penumbra")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("absolute gangstas")] -[assembly: AssemblyProduct("Penumbra")] -[assembly: AssemblyCopyright("Copyright © 2020")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - // Setting ComVisible to false makes the types in this assembly not visible // to COM components. If you need to access a type in this assembly from // COM, set the ComVisible attribute to true on that type. @@ -20,16 +8,3 @@ using System.Runtime.InteropServices; // The following GUID is for the ID of the typelib if this project is exposed to COM [assembly: Guid("13c812e9-0d42-4b95-8646-40eebf30636f")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")]