Skip to content

Commit e03959f

Browse files
committed
Infrastructure updates, add net8.0 and net481 to build
1 parent 7539eaf commit e03959f

File tree

5 files changed

+20
-6
lines changed

5 files changed

+20
-6
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
README
2+
3+
This assembly contains a set of commonly accessed resources. It’s most often
4+
used with the XMLResolver assembly.
5+
6+
Version 1.2.5 is unchanged from 1.2.4 except that the build has been adjusted
7+
so that it supports .NET Framework 4.8.1.

XmlResolverData/XmlResolverData/XmlResolverData.csproj

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<LangVersion>9.0</LangVersion>
5+
<TargetFrameworks>net6.0;net8.0;net481</TargetFrameworks>
56
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
67
<Authors>Norman Walsh</Authors>
78
<Description>This package provides a common set of XML resources and an XML Catalog that resolves them. It’s most commonly used with the xmlresolver package.</Description>
@@ -10,10 +11,12 @@
1011
<PackageProjectUrl>https://xmlresolver.org/</PackageProjectUrl>
1112
<RepositoryUrl>https://github.com/xmlresolver/xmlresolverdata</RepositoryUrl>
1213
<RepositoryType>git</RepositoryType>
13-
<PackageReleaseNotes>Experimental release. Probably buggy. Caveat emptor.</PackageReleaseNotes>
14+
<PackageReleaseNotes>XML Resolver data assembly.</PackageReleaseNotes>
1415
<PackageSummary>This is a standard set of useful XML resources for use with the XML Resolver.</PackageSummary>
16+
<PackageReadmeFile>README.md</PackageReadmeFile>
1517
</PropertyGroup>
1618
<ItemGroup>
19+
<None Include="README.md" Pack="true" PackagePath="\"/>
1720
<EmbeddedResource Include="Data/catalog.xml">
1821
<LogicalName>Org.XmlResolver.catalog.xml</LogicalName>
1922
</EmbeddedResource>

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
dataVersion=1.2.4
1+
dataVersion=1.2.5
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

tools/make-csproj.xsl

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
<xsl:template match="/">
1313
<Project Sdk="Microsoft.NET.Sdk">
1414
<PropertyGroup>
15-
<TargetFramework>net6.0</TargetFramework>
15+
<LangVersion>9.0</LangVersion>
16+
<TargetFrameworks>net6.0;net8.0;net481</TargetFrameworks>
1617
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
1718
<Authors>Norman Walsh</Authors>
1819
<Description>This package provides a common set of XML resources and an XML Catalog that resolves them. It’s most commonly used with the xmlresolver package.</Description>
@@ -21,11 +22,14 @@
2122
<PackageProjectUrl>https://xmlresolver.org/</PackageProjectUrl>
2223
<RepositoryUrl>https://github.com/xmlresolver/xmlresolverdata</RepositoryUrl>
2324
<RepositoryType>git</RepositoryType>
24-
<PackageReleaseNotes>Experimental release. Probably buggy. Caveat emptor.</PackageReleaseNotes>
25+
<PackageReleaseNotes>XML Resolver data assembly.</PackageReleaseNotes>
2526
<PackageSummary>This is a standard set of useful XML resources for use with the XML Resolver.</PackageSummary>
27+
<PackageReadmeFile>README.md</PackageReadmeFile>
2628
</PropertyGroup>
2729

2830
<ItemGroup>
31+
<None Include="README.md" Pack="true" PackagePath="\"/>
32+
2933
<!-- These are hard coded; maybe they shouldn't be. -->
3034
<EmbeddedResource Include="Data/catalog.xml">
3135
<LogicalName>Org.XmlResolver.catalog.xml</LogicalName>

0 commit comments

Comments
 (0)