Skip to content

Commit

Permalink
Merge pull request #236 from BrunoZell/net5
Browse files Browse the repository at this point in the history
Make global tool usable with .NET 5.0 SDK
  • Loading branch information
mganss authored Nov 15, 2020
2 parents 9bd3580 + 25c22b4 commit d6d9419
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion xscgen-proj/xscgen-proj.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>netcoreapp3.1;netcoreapp2.1</TargetFrameworks>
<TargetFrameworks>net5.0;netcoreapp3.1;netcoreapp2.1</TargetFrameworks>
<Description>A .NET Core CLI tool to generate XmlSerializer compatible C# classes from XML Schema files.</Description>
<Copyright>Copyright 2013-$([System.DateTime]::Now.Year) Michael Ganss</Copyright>
<AssemblyTitle>xscgen</AssemblyTitle>
Expand Down
2 changes: 1 addition & 1 deletion xscgen/xscgen.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>netcoreapp3.1;netcoreapp2.1</TargetFrameworks>
<TargetFrameworks>net5.0;netcoreapp3.1;netcoreapp2.1</TargetFrameworks>
<Description>A .NET Core CLI tool to generate XmlSerializer compatible C# classes from XML Schema files.</Description>
<Copyright>Copyright 2013-$([System.DateTime]::Now.Year) Michael Ganss</Copyright>
<AssemblyTitle>xscgen</AssemblyTitle>
Expand Down

0 comments on commit d6d9419

Please sign in to comment.