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
25 changes: 5 additions & 20 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,10 @@ jobs:
with:
submodules: true

- name: Install .NET Core 3.1
- name: Install .NET Core 10.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 3.1.x

- name: Install .NET Core 8.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x

- name: Install .NET Core 9.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
dotnet-version: 10.0.x

# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
Expand Down Expand Up @@ -63,17 +53,12 @@ jobs:
- name: Run TinyT4
run: |
cd Tests
dotnet run --project ..\Utility\tiny-t4\ --framework net9.0

- name: Test .NET Core 3.1
run: |
cd Tests
dotnet test -c Release -property:TargetFramework=netcoreapp3.1 -property:SignAssembly=false -property:PublicSign=false
dotnet run --project ..\Utility\tiny-t4\ --framework net10.0

- name: Test .NET Core 9.0
- name: Test .NET Core 10.0
run: |
cd Tests
dotnet test -c Release -property:TargetFramework=net9.0 -property:SignAssembly=false -property:PublicSign=false
dotnet test -c Release -property:TargetFramework=net10.0 -property:SignAssembly=false -property:PublicSign=false

- name: Test .NET Framework 4.6.1
run: |
Expand Down
13 changes: 6 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,22 +66,21 @@ jobs:
with:
fetch-depth: 0
submodules: true

# Install the .NET Core 6.0
- name: Install .NET Core 6.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x

- name: Install .NET Core 8.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x

- name: Install .NET Core 9.0
- name: Install .NET Core 8.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x

- name: Install .NET Core 10.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.0.x

# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
Expand Down
2 changes: 1 addition & 1 deletion Utility/tiny-t4
Submodule tiny-t4 updated 1 files
+1 −1 tiny-t4.csproj
Loading