File tree Expand file tree Collapse file tree 3 files changed +38
-1
lines changed
Expand file tree Collapse file tree 3 files changed +38
-1
lines changed Original file line number Diff line number Diff line change 66 <AssemblyTitle >XmlSchemaClassGenerator</AssemblyTitle >
77 <VersionPrefix >1.0.0-VERSION</VersionPrefix >
88 <Authors >Michael Ganss</Authors >
9- <TargetFrameworks >net45; netstandard2.0</TargetFrameworks >
9+ <TargetFrameworks >netstandard2.0;net45 </TargetFrameworks >
1010 <AssemblyName >XmlSchemaClassGenerator</AssemblyName >
1111 <PackageId >XmlSchemaClassGenerator-beta</PackageId >
1212 <PackageTags >xsd</PackageTags >
Original file line number Diff line number Diff line change @@ -12,13 +12,15 @@ build_script:
1212 - ps : (Get-Content XmlSchemaClassGenerator\XmlSchemaClassGenerator.csproj).Replace("1.0.0-VERSION", $env:APPVEYOR_BUILD_VERSION) | Set-Content XmlSchemaClassGenerator\XmlSchemaClassGenerator.csproj
1313 - ps : (Get-Content XmlSchemaClassGenerator.Console\XmlSchemaClassGenerator.Console.csproj).Replace("1.0.0-VERSION", $env:APPVEYOR_BUILD_VERSION) | Set-Content XmlSchemaClassGenerator.Console\XmlSchemaClassGenerator.Console.csproj
1414 - ps : (Get-Content xscgen\xscgen.csproj).Replace("1.0.0-VERSION", $env:APPVEYOR_BUILD_VERSION) | Set-Content xscgen\xscgen.csproj
15+ - ps : (Get-Content xscgen-proj\xscgen-proj.csproj).Replace("1.0.0-VERSION", $env:APPVEYOR_BUILD_VERSION) | Set-Content xscgen-proj\xscgen-proj.csproj
1516 - dotnet --info
1617 - dotnet restore
1718 - dotnet build -c Release
1819 - dotnet publish XmlSchemaClassGenerator.Console -c Release -f net45
1920 - dotnet pack --include-symbols --include-source -c Release XmlSchemaClassGenerator
2021 - dotnet pack --include-symbols --include-source -c Release XmlSchemaClassGenerator.Console
2122 - dotnet pack --include-symbols --include-source -c Release xscgen
23+ - dotnet pack --include-symbols --include-source -c Release xscgen-proj
2224 - 7z a -mx=9 XmlSchemaClassGenerator.%APPVEYOR_BUILD_VERSION%.zip ".\XmlSchemaClassGenerator.Console\bin\Release\net45\publish\*"
2325test_script :
2426 - ps : |
@@ -38,6 +40,7 @@ artifacts:
3840 - path : ' XmlSchemaClassGenerator\**\*.nupkg'
3941 - path : ' XmlSchemaClassGenerator.Console\**\*.nupkg'
4042 - path : ' xscgen\**\*.nupkg'
43+ - path : ' xscgen-proj\**\*.nupkg'
4144 - path : XmlSchemaClassGenerator.%APPVEYOR_BUILD_VERSION%.zip
4245on_success :
4346 - ps : |
Original file line number Diff line number Diff line change 1+ <Project Sdk =" Microsoft.NET.Sdk" >
2+ <PropertyGroup >
3+ <OutputType >Exe</OutputType >
4+ <TargetFramework >netcoreapp2.1</TargetFramework >
5+ <Description >A .NET Core CLI tool to generate XmlSerializer compatible C# classes from XML Schema files.</Description >
6+ <Copyright >Copyright 2013-2018 Michael Ganss</Copyright >
7+ <AssemblyTitle >xscgen</AssemblyTitle >
8+ <VersionPrefix >1.0.0</VersionPrefix >
9+ <AssemblyName >dotnet-xscgen</AssemblyName >
10+ <RootNamespace >XmlSchemaClassGenerator.Console</RootNamespace >
11+ <Authors >Michael Ganss</Authors >
12+ <PackageId >dotnet-xscgen-proj</PackageId >
13+ <PackageTags >xsd xmlschema generator</PackageTags >
14+ <PackageProjectUrl >https://github.com/mganss/XmlSchemaClassGenerator</PackageProjectUrl >
15+ <PackageLicenseUrl >https://github.com/mganss/XmlSchemaClassGenerator/blob/master/LICENSE</PackageLicenseUrl >
16+ <RepositoryType >git</RepositoryType >
17+ <RepositoryUrl >git://github.com/mganss/XmlSchemaClassGenerator</RepositoryUrl >
18+ <ToolCommandName >dotnet-xscgen</ToolCommandName >
19+ <DefineConstants >$(DefineConstants);NETSTANDARD</DefineConstants >
20+ </PropertyGroup >
21+ <ItemGroup >
22+ <ProjectReference Include =" ..\XmlSchemaClassGenerator\XmlSchemaClassGenerator.csproj" />
23+ </ItemGroup >
24+ <ItemGroup >
25+ <Compile Include =" ..\XmlSchemaClassGenerator.Console\**\*.cs" Exclude =" ..\XmlSchemaClassGenerator.Console\obj\**\*;..\XmlSchemaClassGenerator.Console\bin\**\*" />
26+ </ItemGroup >
27+ <ItemGroup >
28+ <PackageReference Include =" Glob.cs" Version =" 2.0.13" />
29+ <PackageReference Include =" Mono.Options" Version =" 5.3.0.1" />
30+ </ItemGroup >
31+ <PropertyGroup >
32+ <SonarQubeExclude >true</SonarQubeExclude >
33+ </PropertyGroup >
34+ </Project >
You can’t perform that action at this time.
0 commit comments