From ba8199337402337981026f6f2d556014ce62e23e Mon Sep 17 00:00:00 2001 From: StarDevTeam Date: Fri, 4 Jan 2019 01:28:37 +0400 Subject: [PATCH] Rewrite project to net core Updated MadMilkman.Ini project to .Net Core with multi-target platforms. Net Framework: 2.0,3.5,4.0,4.5,4.6. Net Core: 2.0,2.1,2.2,3.0 --- MadMilkman.Ini/MadMilkman.Ini.csproj | 109 ++++------------------ MadMilkman.Ini/Properties/AssemblyInfo.cs | 38 -------- 2 files changed, 18 insertions(+), 129 deletions(-) delete mode 100644 MadMilkman.Ini/Properties/AssemblyInfo.cs diff --git a/MadMilkman.Ini/MadMilkman.Ini.csproj b/MadMilkman.Ini/MadMilkman.Ini.csproj index 2803d9b..e436c00 100644 --- a/MadMilkman.Ini/MadMilkman.Ini.csproj +++ b/MadMilkman.Ini/MadMilkman.Ini.csproj @@ -1,91 +1,18 @@ - - - - - Debug - AnyCPU - {BEF9735D-C3CC-41E6-AAC6-18C5985D3107} - Library - Properties - MadMilkman.Ini - MadMilkman.Ini - v2.0 - 512 - - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - AllRules.ruleset - bin\Debug\MadMilkman.Ini.xml - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - bin\Release\MadMilkman.Ini.xml - AllRules.ruleset - - - true - - - Properties\MadMilkman.Ini.StrongNameKey.snk - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + net20;net35;net40;net45;net46;netcoreapp2.0;netcoreapp2.1;netcoreapp2.2;netcoreapp3.0 + true + Properties\MadMilkman.Ini.StrongNameKey.snk + false + + + + + + + + + + + diff --git a/MadMilkman.Ini/Properties/AssemblyInfo.cs b/MadMilkman.Ini/Properties/AssemblyInfo.cs deleted file mode 100644 index 54bbd53..0000000 --- a/MadMilkman.Ini/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,38 +0,0 @@ -#region License & Copyright Notice -/* Copyright 2015 Mario Zorica. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. */ -#endregion - -using System; -using System.Reflection; -using System.Runtime.InteropServices; -using System.Security; -using System.Resources; - -[assembly: AssemblyTitle("MadMilkman.Ini")] -[assembly: AssemblyDescription("INI file's reader and writer for .NET framework.")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("MadMilkman")] -[assembly: AssemblyProduct("MadMilkman.Ini")] -[assembly: AssemblyCopyright("Copyright © MadMilkman")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -[assembly: ComVisible(false)] -[assembly: Guid("aa0460b5-031d-49f3-a71b-2eb353055941")] -[assembly: AllowPartiallyTrustedCallers] -[assembly: CLSCompliant(true)] - -[assembly: AssemblyVersion("1.0.6.2")] -[assembly: NeutralResourcesLanguageAttribute("en-US")]