Skip to content

Commit

Permalink
More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
viceroypenguin committed Jan 11, 2025
1 parent e60e886 commit a4fe3e6
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
3.1.x
6.0.x
8.0.x
9.0.x
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
3.1.x
6.0.x
8.0.x
9.0.x
Expand All @@ -41,7 +39,7 @@ jobs:
run: dotnet build -c Release --no-restore

- name: Build documentation
run: dotnet run -f net8.0 -c Release --no-build
run: dotnet run -f net9.0 -c Release --no-build
working-directory: Docs/SuperLinq.Docs

- name: Setup Pages
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
3.1.x
6.0.x
8.0.x
9.0.x
Expand Down
6 changes: 5 additions & 1 deletion Tests/SuperLinq.Async.Tests/SuperLinq.Async.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,18 @@

<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<TargetFrameworks Condition="$([System.OperatingSystem]::IsWindows())">net47;$(TargetFrameworks)</TargetFrameworks>

<IsPackable>false</IsPackable>
<AnalysisLevel>latest-recommended</AnalysisLevel>

<PolySharpExcludeGeneratedTypes>System.Runtime.CompilerServices.ModuleInitializerAttribute</PolySharpExcludeGeneratedTypes>
</PropertyGroup>

<PropertyGroup Condition="$([System.OperatingSystem]::IsWindows())">
<TargetFrameworks>net47;$(TargetFrameworks)</TargetFrameworks>
<RuntimeIdentifiers>win-x86;win-x64</RuntimeIdentifiers>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\Source\SuperLinq\SuperLinq.csproj" />
<ProjectReference Include="..\..\Source\SuperLinq.Async\SuperLinq.Async.csproj" />
Expand Down
6 changes: 5 additions & 1 deletion Tests/SuperLinq.Tests/SuperLinq.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,18 @@

<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<TargetFrameworks Condition="$([System.OperatingSystem]::IsWindows())">net47;$(TargetFrameworks)</TargetFrameworks>

<IsPackable>false</IsPackable>
<AnalysisLevel>latest-recommended</AnalysisLevel>

<PolySharpExcludeGeneratedTypes>System.Runtime.CompilerServices.ModuleInitializerAttribute</PolySharpExcludeGeneratedTypes>
</PropertyGroup>

<PropertyGroup Condition="$([System.OperatingSystem]::IsWindows())">
<TargetFrameworks>net47;$(TargetFrameworks)</TargetFrameworks>
<RuntimeIdentifiers>win-x86;win-x64</RuntimeIdentifiers>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\Source\SuperLinq\SuperLinq.csproj" />
</ItemGroup>
Expand Down

0 comments on commit a4fe3e6

Please sign in to comment.