From f4c5652a972745df78ba3c20b691a68ba75df2e6 Mon Sep 17 00:00:00 2001 From: Michael Ganss Date: Mon, 28 Aug 2017 13:17:45 +0200 Subject: [PATCH] Use only NuGet package again --- .../XmlSchemaClassGenerator.Console.csproj | 2 ++ .../XmlSchemaClassGenerator.csproj | 29 ++++++++++++++++++- appveyor.yml | 4 --- 3 files changed, 30 insertions(+), 5 deletions(-) diff --git a/XmlSchemaClassGenerator.Console/XmlSchemaClassGenerator.Console.csproj b/XmlSchemaClassGenerator.Console/XmlSchemaClassGenerator.Console.csproj index 0a606cad..d6a26d67 100644 --- a/XmlSchemaClassGenerator.Console/XmlSchemaClassGenerator.Console.csproj +++ b/XmlSchemaClassGenerator.Console/XmlSchemaClassGenerator.Console.csproj @@ -12,6 +12,8 @@ xsd https://github.com/mganss/XmlSchemaClassGenerator https://github.com/mganss/XmlSchemaClassGenerator/blob/master/LICENSE + true + false git git://github.com/mganss/XmlSchemaClassGenerator false diff --git a/XmlSchemaClassGenerator/XmlSchemaClassGenerator.csproj b/XmlSchemaClassGenerator/XmlSchemaClassGenerator.csproj index 95add7ad..f281ddb6 100644 --- a/XmlSchemaClassGenerator/XmlSchemaClassGenerator.csproj +++ b/XmlSchemaClassGenerator/XmlSchemaClassGenerator.csproj @@ -1,7 +1,7 @@  - A library to generate XmlSerializer compatible C# classes from XML Schema files. + Generate XmlSerializer compatible C# classes from XML Schema files. Copyright 2013-2017 Michael Ganss XmlSchemaClassGenerator 1.0.0-VERSION @@ -39,4 +39,31 @@ + + + tools/ + true + + + tools/ + true + + + tools/ + true + + + tools/ + true + + + tools/ + true + + + tools/ + true + + + diff --git a/appveyor.yml b/appveyor.yml index faa84645..c0f58d8c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,7 +6,6 @@ build_script: - ps: (Get-Content XmlSchemaClassGenerator.Console\XmlSchemaClassGenerator.Console.csproj).Replace("1.0.0-VERSION", $env:APPVEYOR_BUILD_VERSION) | Set-Content XmlSchemaClassGenerator.Console\XmlSchemaClassGenerator.Console.csproj - dotnet restore - dotnet pack --include-symbols --include-source -c Release XmlSchemaClassGenerator - - dotnet pack --include-symbols --include-source -c Release XmlSchemaClassGenerator.Console test_script: - dotnet test XmlSchemaClassGenerator.Tests\XmlSchemaClassGenerator.Tests.csproj - nuget.exe install OpenCover -ExcludeVersion @@ -16,6 +15,3 @@ test_script: - codecov -f "coverage.xml" artifacts: - path: 'XmlSchemaClassGenerator\**\*.nupkg' - name: XmlSchemaClassGenerator - - path: 'XmlSchemaClassGenerator.Console\**\*.nupkg' - name: XmlSchemaClassGenerator.Console