Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
dotnet-version: 10.0.x

- name: Restore dependencies
run: dotnet restore
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
Releases/
!releases/
x64/
x86/
[Ww][Ii][Nn]32/
Expand All @@ -33,6 +34,7 @@ ScaffoldingReadMe.txt

# NuGet Packages
*.nupkg
!releases/**/*.nupkg
# NuGet Symbol Packages
*.snupkg

Expand Down
6 changes: 3 additions & 3 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TargetFramework>net9.0</TargetFramework>
<LangVersion>13</LangVersion>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>14</LangVersion>

</PropertyGroup>

</Project>
</Project>
12 changes: 6 additions & 6 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageVersion>
<!-- Microsoft -->
<PackageVersion Include="Microsoft.AspNetCore.OpenApi" Version="9.0.11" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="9.0.11" />
<PackageVersion Include="Microsoft.Extensions.Configuration" Version="9.0.11" />
<PackageVersion Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.11" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.11" />
<PackageVersion Include="Microsoft.AspNetCore.OpenApi" Version="10.0.0" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.0" />
<PackageVersion Include="Microsoft.Extensions.Configuration" Version="10.0.0" />
<PackageVersion Include="Microsoft.Extensions.Configuration.Abstractions" Version="10.0.0" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.0" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
<!-- Shouldly -->
<PackageVersion Include="Shouldly" Version="4.3.0" />
<!-- StringTemplates -->
<PackageVersion Include="StringTemplates" Version="9.0.11" />
<PackageVersion Include="StringTemplates" Version="10.0.0" />
<!-- xUnit -->
<PackageVersion Include="xunit" Version="2.9.3" />
<PackageVersion Include="xunit.runner.visualstudio" Version="3.1.5" />
Expand Down
Binary file added releases/StringTemplates.10.0.0.nupkg
Binary file not shown.
Binary file added releases/StringTemplates.9.0.11.nupkg
Binary file not shown.
Binary file added releases/StringTemplates.9.0.9.nupkg
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions src/StringTemplates/StringTemplates.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<PackageId>StringTemplates</PackageId>
<Title>StringTemplates</Title>
<Version>9.0.11</Version>
<Version>10.0.0</Version>

<Authors>Stratis-Dermanoutsos</Authors>
<Company>Stratis-OSS</Company>
Expand All @@ -17,7 +17,7 @@
<Description>The best way to handle templates and replace placeholders.</Description>
<PackageTags>open-source oss csharp dotnet strings templates placeholders</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>* Updated dependencies to latest versions.
<PackageReleaseNotes>* Upgraded to .NET 10 and C# 14.
</PackageReleaseNotes>

<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<PackageId>StringTemplates.Configuration</PackageId>
<Title>StringTemplates.Configuration</Title>
<Version>9.0.11</Version>
<Version>10.0.0</Version>

<Authors>Stratis-Dermanoutsos</Authors>
<Company>Stratis-OSS</Company>
Expand All @@ -17,7 +17,7 @@
<Description>The best way to handle templates and replace placeholders using IConfiguration.</Description>
<PackageTags>open-source oss csharp dotnet strings templates placeholders environment config</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>* Updated dependencies to latest versions.
<PackageReleaseNotes>* Upgraded to .NET 10 and C# 14.
</PackageReleaseNotes>

<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
Expand Down
Loading