From 00384e517f7b78d7ce999185616fe020db8acc4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20Ehrenm=C3=BCller?= Date: Fri, 7 Jun 2019 20:04:44 +0200 Subject: [PATCH] Update to Fody 5.0.6 --- AnotherAssembly/AnotherAssembly.csproj | 54 ++-------------------- AnotherAssembly/Properties/AssemblyInfo.cs | 35 -------------- AssemblyToProcess/AssemblyToProcess.csproj | 2 +- DeepCopy.Fody/DeepCopy.Fody.csproj | 4 +- DeepCopy.sln | 6 +-- DeepCopy/DeepCopy.csproj | 6 +-- SmokeTest/SmokeTest.csproj | 4 +- Tests/Tests.csproj | 2 +- 8 files changed, 16 insertions(+), 97 deletions(-) delete mode 100644 AnotherAssembly/Properties/AssemblyInfo.cs diff --git a/AnotherAssembly/AnotherAssembly.csproj b/AnotherAssembly/AnotherAssembly.csproj index f936d7a..74835c6 100644 --- a/AnotherAssembly/AnotherAssembly.csproj +++ b/AnotherAssembly/AnotherAssembly.csproj @@ -1,53 +1,7 @@  - - + - Debug - AnyCPU - {D7FF809D-FA0F-4183-87FE-E154B2B6ABD1} - Library - Properties - AnotherAssembly - AnotherAssembly - v4.5.2 - 512 + net46;netcoreapp2.2 + true - - AnyCPU - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - AnyCPU - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/AnotherAssembly/Properties/AssemblyInfo.cs b/AnotherAssembly/Properties/AssemblyInfo.cs deleted file mode 100644 index 40e5a84..0000000 --- a/AnotherAssembly/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,35 +0,0 @@ -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("AnotherAssembly")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("AnotherAssembly")] -[assembly: AssemblyCopyright("Copyright © 2019")] -[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. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("D7FF809D-FA0F-4183-87FE-E154B2B6ABD1")] - -// 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")] \ No newline at end of file diff --git a/AssemblyToProcess/AssemblyToProcess.csproj b/AssemblyToProcess/AssemblyToProcess.csproj index eb84f9d..eff24bc 100644 --- a/AssemblyToProcess/AssemblyToProcess.csproj +++ b/AssemblyToProcess/AssemblyToProcess.csproj @@ -1,7 +1,7 @@  - net46;netcoreapp2.2 + net472;netcoreapp2.2 true diff --git a/DeepCopy.Fody/DeepCopy.Fody.csproj b/DeepCopy.Fody/DeepCopy.Fody.csproj index c801168..457373c 100644 --- a/DeepCopy.Fody/DeepCopy.Fody.csproj +++ b/DeepCopy.Fody/DeepCopy.Fody.csproj @@ -1,11 +1,11 @@  - net46;netstandard2.0 + net472;netstandard2.0 portable - + \ No newline at end of file diff --git a/DeepCopy.sln b/DeepCopy.sln index a10e8ac..713cd27 100644 --- a/DeepCopy.sln +++ b/DeepCopy.sln @@ -1,8 +1,8 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.28307.572 -MinimumVisualStudioVersion = 10.0.40219.1 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.28721.148 +MinimumVisualStudioVersion = 16.0.28721.148 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DeepCopy.Fody", "DeepCopy.Fody\DeepCopy.Fody.csproj", "{5119657D-E83E-410A-840D-3926E8A05C89}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DeepCopy", "DeepCopy\DeepCopy.csproj", "{01544AA5-F19E-44F3-8D7C-3946EB9E6139}" diff --git a/DeepCopy/DeepCopy.csproj b/DeepCopy/DeepCopy.csproj index 58c9fc4..4dea777 100644 --- a/DeepCopy/DeepCopy.csproj +++ b/DeepCopy/DeepCopy.csproj @@ -1,7 +1,7 @@  - net452;netstandard2.0 + netstandard2.0 true key.snk Oliver Ehrenmüller @@ -14,7 +14,7 @@ https://github.com/greuelpirat/DeepCopy/blob/master/package_icon.png - - + + \ No newline at end of file diff --git a/SmokeTest/SmokeTest.csproj b/SmokeTest/SmokeTest.csproj index f714e30..16afeb4 100644 --- a/SmokeTest/SmokeTest.csproj +++ b/SmokeTest/SmokeTest.csproj @@ -1,12 +1,12 @@  - net452;net472;netstandard2.0 + net472;netstandard2.0 false - + all runtime; build; native; contentfiles; analyzers diff --git a/Tests/Tests.csproj b/Tests/Tests.csproj index 861656f..1bc7efc 100644 --- a/Tests/Tests.csproj +++ b/Tests/Tests.csproj @@ -9,7 +9,7 @@ - +