Skip to content
Open
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
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,23 +26,25 @@ jobs:
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
8.0.*
10.0.*
- name: Git checkout Schema
uses: actions/checkout@v6
with:
path: Schema
persist-credentials: false
- name: Git checkout Steeltoe
uses: actions/checkout@v6
with:
repository: SteeltoeOSS/Steeltoe
path: Steeltoe
ref: main
persist-credentials: false
- name: Restore packages
run: |
dotnet restore Schema
- name: Build
- name: Build solution
run: |
dotnet build Schema --no-restore --configuration Release
- name: Test
run: |
dotnet test Schema --no-build --configuration Release --collect:"XPlat Code Coverage" --logger "GitHubActions;summary.includeSkippedTests=true"
dotnet test Schema --no-build --configuration Release
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
Expand All @@ -11,11 +11,9 @@
<ItemGroup>
<PackageReference Include="coverlet.collector" Version="$(CoverletCollectorVersion)" PrivateAssets="All" />
<PackageReference Include="FluentAssertions" Version="$(FluentAssertionsVersion)" />
<PackageReference Include="GitHubActionsTestLogger" Version="$(GitHubActionsTestLoggerVersion)" PrivateAssets="All" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(MicrosoftNetTestSdkVersion)" />
<PackageReference Include="xunit" Version="$(XunitVersion)" />
<PackageReference Include="xunit.runner.console" Version="$(XunitVersion)" />
<PackageReference Include="xunit.runner.visualstudio" Version="$(XunitVersion)" PrivateAssets="All" />
<PackageReference Include="xunit.v3" Version="$(XunitVersion)" />
<PackageReference Include="xunit.runner.visualstudio" Version="$(XunitVisualStudioVersion)" PrivateAssets="All" />
</ItemGroup>

<ItemGroup>
Expand Down
8 changes: 4 additions & 4 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Project>
<PropertyGroup>
<CoverletCollectorVersion>6.0.*</CoverletCollectorVersion>
<CoverletCollectorVersion>10.0.*</CoverletCollectorVersion>
<FluentAssertionsVersion>7.2.*</FluentAssertionsVersion>
<GitHubActionsTestLoggerVersion>2.4.*</GitHubActionsTestLoggerVersion>
<MicrosoftNetTestSdkVersion>17.13.*</MicrosoftNetTestSdkVersion>
<XunitVersion>2.*</XunitVersion>
<MicrosoftNetTestSdkVersion>18.5.*</MicrosoftNetTestSdkVersion>
<XunitVersion>3.2.*</XunitVersion>
<XunitVisualStudioVersion>3.1.*</XunitVisualStudioVersion>
</PropertyGroup>
</Project>
28 changes: 0 additions & 28 deletions Schema.sln

This file was deleted.

4 changes: 4 additions & 0 deletions Schema.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<Solution>
<Project Path="ConfigurationSchemaGenerator/ConfigurationSchemaGenerator.csproj" />
<Project Path="ConfigurationSchemaGeneratorTest/ConfigurationSchemaGeneratorTest.csproj" />
</Solution>
106 changes: 55 additions & 51 deletions Schema.sln.DotSettings → Schema.slnx.DotSettings

Large diffs are not rendered by default.

Loading