Skip to content

Commit

Permalink
update SDK, TFMs, and submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
brettfo committed Aug 30, 2024
1 parent d9003d5 commit ff6af66
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 22 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
os: [ubuntu-latest, windows-latest]
configuration: [Debug, Release]
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-dotnet@v3
- uses: actions/setup-dotnet@v4
- name: Build and test
shell: pwsh
run: ./build-and-test.ps1 -configuration ${{ matrix.configuration }}
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "7.0.100",
"version": "8.0.100",
"rollForward": "latestMinor"
}
}
24 changes: 12 additions & 12 deletions src/IxMilia.Converters.Test/DxfToPdfTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ public async Task EmptyTest()
var expectedEmptyStream = NormalizeCrLf(@"
stream
0 w
0 0 0 RG
0 0 0 rg
0.000 0.000 0.000 RG
0.000 0.000 0.000 rg
S
endstream".Trim());
Assert.Contains(expectedEmptyStream, pdf);
Expand All @@ -71,8 +71,8 @@ public async Task SimpleLineTest()
var expected = NormalizeCrLf(@"
stream
0 w
0 0 0 RG
0 0 0 rg
0.000 0.000 0.000 RG
0.000 0.000 0.000 rg
0.00 0.00 m
306.00 396.00 l
S
Expand All @@ -95,8 +95,8 @@ public async Task SourceDestinationTransformTest()
var expected = NormalizeCrLf(@"
stream
0 w
0 0 0 RG
0 0 0 rg
0.000 0.000 0.000 RG
0.000 0.000 0.000 rg
100.00 300.00 m
200.00 400.00 l
S
Expand Down Expand Up @@ -131,8 +131,8 @@ public async Task RenderClosedLwPolylineTest()
var expected = NormalizeCrLf(@"
stream
0 w
0 0 0 RG
0 0 0 rg
0.000 0.000 0.000 RG
0.000 0.000 0.000 rg
72.00 72.00 m
144.00 72.00 l
216.00 144.00 m
Expand Down Expand Up @@ -177,8 +177,8 @@ public async Task RenderClosedPolylineTest()
var expected = NormalizeCrLf(@"
stream
0 w
0 0 0 RG
0 0 0 rg
0.000 0.000 0.000 RG
0.000 0.000 0.000 rg
72.00 72.00 m
144.00 72.00 l
216.00 144.00 m
Expand Down Expand Up @@ -256,8 +256,8 @@ public async Task ConvertActiveLayersTest()
var expected = NormalizeCrLf(@"
stream
0 w
0 0 0 RG
0 0 0 rg
0.000 0.000 0.000 RG
0.000 0.000 0.000 rg
0.00 0.00 m
72.00 72.00 l
S
Expand Down
8 changes: 4 additions & 4 deletions src/IxMilia.Converters.Test/IxMilia.Converters.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand All @@ -13,9 +13,9 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="xunit" Version="2.9.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />
</ItemGroup>

</Project>

0 comments on commit ff6af66

Please sign in to comment.