Skip to content

Commit de67e7e

Browse files
Merge pull request #61 from Stillpoint-Software/develop
Develop
2 parents 69bb2c2 + 5bd5db6 commit de67e7e

File tree

6 files changed

+26
-27
lines changed

6 files changed

+26
-27
lines changed

Directory.Build.props

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
<Project>
2-
<!-- Shared package refs -->
2+
<PropertyGroup>
3+
<!-- Suppress NU1507 (multiple package sources with CPM) -->
4+
<NoWarn>$(NoWarn);NU1507</NoWarn>
5+
</PropertyGroup>
36
<ItemGroup>
4-
<!-- NBGV drives versions; PrivateAssets=all keeps it out of consumers -->
57
<PackageReference Include="Nerdbank.GitVersioning" PrivateAssets="all" />
6-
7-
<!-- SourceLink for GitHub -->
88
<PackageReference Include="Microsoft.SourceLink.GitHub" >
99
<PrivateAssets>all</PrivateAssets>
1010
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1111
</PackageReference>
12-
1312
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting"/>
1413
</ItemGroup>
1514

@@ -50,6 +49,7 @@
5049
<!-- Global project properies -->
5150
<PropertyGroup>
5251
<ImplicitUsings>enable</ImplicitUsings>
53-
<TargetFrameworks>net8.0;net10.0</TargetFrameworks>
52+
<!-- Primary target: .NET 10 (next LTS), with .NET 9 for current support, .NET 8 for compatibility -->
53+
<TargetFrameworks>net10.0;net9.0;net8.0</TargetFrameworks>
5454
</PropertyGroup>
5555
</Project>

Directory.Packages.props

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,20 @@
55
<ItemGroup>
66
<!-- Core Application Dependencies -->
77
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="5.0.0" />
8-
<!-- Development Tools -->
8+
<!-- Development Tools -->
99
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="8.0.0" />
10-
<PackageVersion Include="Nerdbank.GitVersioning" Version="3.9.50" />
11-
<!-- Testing Framework -->
12-
<PackageVersion Include="coverlet.collector" Version="6.0.4" />
10+
<PackageVersion Include="Nerdbank.GitVersioning" Version="3.9.50" >
11+
<PrivateAssets>all</PrivateAssets>
12+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
13+
</PackageVersion>
14+
<!-- Testing Framework -->
15+
<PackageVersion Include="coverlet.collector" Version="6.0.4" >
16+
<PrivateAssets>all</PrivateAssets>
17+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
18+
</PackageVersion>
1319
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
1420
<PackageVersion Include="MSTest.TestAdapter" Version="4.0.2" />
1521
<PackageVersion Include="MSTest.TestFramework" Version="4.0.2" />
16-
</ItemGroup>
17-
</Project>
22+
23+
</ItemGroup>
24+
</Project>

Hyperbee.Resources.slnx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<File Path="Directory.Build.props" />
44
<File Path="Directory.Packages.props" />
55
<File Path="LICENSE" />
6+
<File Path="NuGet.Config" />
67
<File Path="README.md" />
78
<File Path="version.json" />
89
<Project Path="docs/docs.shproj" />

src/Hyperbee.Resources/Hyperbee.Resources.csproj

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,13 @@
44
<Nullable>enable</Nullable>
55
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
66
<IsPackable>true</IsPackable>
7-
87
<Authors>Stillpoint Software, Inc.</Authors>
98
<PackageReadmeFile>README.md</PackageReadmeFile>
109
<PackageTags>resources;NET;embedded resources</PackageTags>
1110
<PackageIcon>icon.png</PackageIcon>
1211
<PackageProjectUrl>https://github.com/Stillpoint-Software/Hyperbee.Resources/</PackageProjectUrl>
13-
<TargetFrameworks>net8.0;net10.0</TargetFrameworks>
1412
<PackageLicenseFile>LICENSE</PackageLicenseFile>
13+
<PackageId>Hyperbee.Resources</PackageId>
1514
<Copyright>Stillpoint Software, Inc.</Copyright>
1615
<Title>Hyperbee Resources</Title>
1716
<Description>
@@ -33,10 +32,7 @@
3332
<PackagePath>\</PackagePath>
3433
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
3534
</None>
36-
<PackageReference Update="Microsoft.SourceLink.GitHub">
37-
<PrivateAssets>all</PrivateAssets>
38-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
39-
</PackageReference>
35+
<PackageReference Update="Microsoft.SourceLink.GitHub"/>
4036
<PackageReference Update="Nerdbank.GitVersioning" />
4137
</ItemGroup>
4238

test/Hyperbee.Resources.Tests/Hyperbee.Resources.Tests.csproj

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,8 @@
1515
</ItemGroup>
1616

1717
<ItemGroup>
18-
<PackageReference Include="coverlet.collector">
19-
<PrivateAssets>all</PrivateAssets>
20-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
21-
</PackageReference>
18+
<PackageReference Include="coverlet.collector" />
19+
2220
<PackageReference Include="Microsoft.NET.Test.Sdk" />
2321
<PackageReference Include="MSTest.TestAdapter" />
2422
<PackageReference Include="MSTest.TestFramework" />
@@ -33,10 +31,7 @@
3331
</ItemGroup>
3432

3533
<ItemGroup>
36-
<PackageReference Update="Microsoft.SourceLink.GitHub" >
37-
<PrivateAssets>all</PrivateAssets>
38-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
39-
</PackageReference>
34+
<PackageReference Update="Microsoft.SourceLink.GitHub" />
4035
<PackageReference Update="Nerdbank.GitVersioning" />
4136
</ItemGroup>
4237

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/main/src/NerdBank.GitVersioning/version.schema.json",
3-
"version": "2.0.4",
3+
"version": "2.1.1",
44
"publicReleaseRefSpec": [
55
"^refs/heads/main$",
66
"^refs/heads/hotfix$",

0 commit comments

Comments
 (0)