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
16 changes: 8 additions & 8 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageVersion>
<!-- Microsoft -->
<PackageVersion Include="Microsoft.AspNetCore.OpenApi" Version="9.0.2" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="9.0.9" />
<PackageVersion Include="Microsoft.Extensions.Configuration" Version="9.0.9" />
<PackageVersion Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.9" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.9" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
<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.NET.Test.Sdk" Version="18.0.1" />
<!-- Shouldly -->
<PackageVersion Include="Shouldly" Version="4.3.0" />
<!-- StringTemplates -->
<PackageVersion Include="StringTemplates" Version="9.0.9" />
<PackageVersion Include="StringTemplates" Version="9.0.11" />
<!-- xUnit -->
<PackageVersion Include="xunit" Version="2.9.3" />
<PackageVersion Include="xunit.runner.visualstudio" Version="2.8.2" />
<PackageVersion Include="xunit.runner.visualstudio" Version="3.1.5" />
</ItemGroup>
</Project>
15 changes: 8 additions & 7 deletions StringTemplates.slnx
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<Solution>
<Folder Name="/examples/">
<Project Path="examples\StringTemplates.Demo\StringTemplates.Demo.csproj" Type="Classic C#" />
<Project Path="examples\StringTemplates.Demo\StringTemplates.Demo.csproj" Type="C#" />
</Folder>
<Folder Name="/solution/">
<File Path=".editorconfig" />
<File Path="build-core.sh" />
<File Path="build-plugin.sh" />
<File Path="Directory.Build.props" />
<File Path="Directory.Packages.props" />
</Folder>
Expand All @@ -17,18 +18,18 @@
<File Path=".github/workflows/CI.yml" />
</Folder>
<Folder Name="/src/">
<Project Path="src\StringTemplates\StringTemplates.csproj" Type="Classic C#" />
<Project Path="src\StringTemplates\StringTemplates.csproj" Type="C#" />
</Folder>
<Folder Name="/src/plugins/">
<Project Path="src\plugins\StringTemplates.Plugins.Configuration\StringTemplates.Plugins.Configuration.csproj" Type="Classic C#" />
<Project Path="src\plugins\StringTemplates.Plugins.Configuration\StringTemplates.Plugins.Configuration.csproj" Type="C#" />
</Folder>
<Folder Name="/tests/">
<Project Path="tests\StringTemplates.IntegrationTests.Common\StringTemplates.IntegrationTests.Common.csproj" Type="Classic C#" />
<Project Path="tests\StringTemplates.IntegrationTests\StringTemplates.IntegrationTests.csproj" Type="Classic C#" />
<Project Path="tests\StringTemplates.UnitTests\StringTemplates.UnitTests.csproj" Type="Classic C#" />
<Project Path="tests\StringTemplates.IntegrationTests.Common\StringTemplates.IntegrationTests.Common.csproj" Type="C#" />
<Project Path="tests\StringTemplates.IntegrationTests\StringTemplates.IntegrationTests.csproj" Type="C#" />
<Project Path="tests\StringTemplates.UnitTests\StringTemplates.UnitTests.csproj" Type="C#" />
</Folder>
<Folder Name="/tests/plugins/" />
<Folder Name="/tests/plugins/Configuration/">
<Project Path="tests\plugins\Configuration\StringTemplates.Plugins.Configuration.UnitTests\StringTemplates.Plugins.Configuration.UnitTests.csproj" Type="Classic C#" />
<Project Path="tests\plugins\Configuration\StringTemplates.Plugins.Configuration.UnitTests\StringTemplates.Plugins.Configuration.UnitTests.csproj" Type="C#" />
</Folder>
</Solution>
10 changes: 10 additions & 0 deletions build-plugin.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash
set -e

cd ./src/plugins/StringTemplates.Plugins.Configuration
dotnet clean
dotnet build -c Release
dotnet pack -c Release

# To run:
# chmod +x build-plugin.sh
10 changes: 4 additions & 6 deletions src/StringTemplates/StringTemplates.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
<PropertyGroup>
<PackageId>StringTemplates</PackageId>
<Title>StringTemplates</Title>
<Version>9.0.9</Version>
<Version>9.0.11</Version>

<Authors>Stratis-Dermanoutsos</Authors>
<Company>Stratis-Dermanoutsos</Company>
<Company>Stratis-OSS</Company>

<Copyright>Copyright © Stratis Dermanoutsos 2025</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
Expand All @@ -17,9 +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>* First release.
* Dictionary plugin.
* System plugin.
<PackageReleaseNotes>* Updated dependencies to latest versions.
</PackageReleaseNotes>

<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
Expand All @@ -33,4 +31,4 @@
<None Include="../../LICENSE" Pack="true" PackagePath="/"/>
<None Include="../../README.md" Pack="true" PackagePath="/"/>
</ItemGroup>
</Project>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
<PropertyGroup>
<PackageId>StringTemplates.Configuration</PackageId>
<Title>StringTemplates.Configuration</Title>
<Version>9.0.9</Version>
<Version>9.0.11</Version>

<Authors>Stratis-Dermanoutsos</Authors>
<Company>Stratis-Dermanoutsos</Company>
<Company>Stratis-OSS</Company>

<Copyright>Copyright © Stratis Dermanoutsos 2025</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
Expand All @@ -17,8 +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>* First release.
* IConfiguration plugin.
<PackageReleaseNotes>* Updated dependencies to latest versions.
</PackageReleaseNotes>

<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@
<PackageReference Include="Microsoft.NET.Test.Sdk"/>
<PackageReference Include="Shouldly"/>
<PackageReference Include="xunit"/>
<PackageReference Include="xunit.runner.visualstudio"/>
<PackageReference Include="xunit.runner.visualstudio">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@
<PackageReference Include="Microsoft.NET.Test.Sdk"/>
<PackageReference Include="Shouldly" />
<PackageReference Include="xunit"/>
<PackageReference Include="xunit.runner.visualstudio"/>
<PackageReference Include="xunit.runner.visualstudio">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@
<PackageReference Include="Microsoft.NET.Test.Sdk"/>
<PackageReference Include="Shouldly" />
<PackageReference Include="xunit"/>
<PackageReference Include="xunit.runner.visualstudio"/>
<PackageReference Include="xunit.runner.visualstudio">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
Expand Down
Loading