Skip to content

Commit 40f6784

Browse files
committed
Removed unnecessary changes and updated error message
1 parent a23dfc5 commit 40f6784

2 files changed

Lines changed: 21 additions & 22 deletions

File tree

.github/workflows/main.yml

Lines changed: 19 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -100,27 +100,8 @@ jobs:
100100
uses: ./.github/setup
101101
with:
102102
sln: src/DotVVM.Crossplatform.slnf
103-
- name: Tests (net472)
104-
uses: ./.github/unittest
105-
if: ${{ (matrix.os == 'windows-2022') && (success() || failure()) }}
106-
with:
107-
project: src/Tests
108-
name: framework-tests
109-
title: Framework Tests
110-
github-token: ${{ secrets.GITHUB_TOKEN }}
111-
target-framework: net472
112-
- name: Adapters.WebForms.Tests (net472)
113-
uses: ./.github/unittest
114-
if: matrix.os == 'windows-2022'
115-
with:
116-
project: src/Adapters/Tests/WebForms
117-
name: webforms-adapters-tests
118-
title: WebForms Adapter Tests
119-
github-token: ${{ secrets.GITHUB_TOKEN }}
120-
target-framework: net472
121103
- name: Tests (net8.0)
122104
uses: ./.github/unittest
123-
if: ${{ success() || failure() }}
124105
with:
125106
project: src/Tests
126107
name: framework-tests
@@ -135,6 +116,15 @@ jobs:
135116
# title: Framework Tests
136117
# github-token: ${{ secrets.GITHUB_TOKEN }}
137118
# target-framework: net7.0
119+
- name: Tests (net472)
120+
uses: ./.github/unittest
121+
if: ${{ (matrix.os == 'windows-2022') && (success() || failure()) }}
122+
with:
123+
project: src/Tests
124+
name: framework-tests
125+
title: Framework Tests
126+
github-token: ${{ secrets.GITHUB_TOKEN }}
127+
target-framework: net472
138128
- name: Analyzers.Tests (net8.0)
139129
uses: ./.github/unittest
140130
if: ${{ success() || failure() }}
@@ -151,7 +141,16 @@ jobs:
151141
# name: analyzers-tests
152142
# title: Analyzer Tests
153143
# github-token: ${{ secrets.GITHUB_TOKEN }}
154-
# target-framework: net7.0
144+
# target-framework: net7.0
145+
- name: Adapters.WebForms.Tests (net472)
146+
uses: ./.github/unittest
147+
if: matrix.os == 'windows-2022'
148+
with:
149+
project: src/Adapters/Tests/WebForms
150+
name: webforms-adapters-tests
151+
title: WebForms Adapter Tests
152+
github-token: ${{ secrets.GITHUB_TOKEN }}
153+
target-framework: net472
155154
- name: Integration Tests (net10.0)
156155
uses: ./.github/unittest
157156
if: ${{ matrix.os == 'ubuntu-latest' && (success() || failure()) }}

src/Tools/CommandLine/CompilerCommands.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,13 +103,13 @@ public static int HandleLint(
103103
{
104104
executable = FindNetFwCompilerExecutable(project, cliDirectory)
105105
?? throw new Exception($"DotVVM Compiler (for .NET Framework) could not be found in the NuGet package cache. "
106-
+ "Please ensure the DotVVM NuGet package is properly installed.");
106+
+ "Please note this feature is supported in DotVVM 5.0.0 and above.");
107107
}
108108
else
109109
{
110110
var compilerDll = FindNetCompilerDll(project, cliDirectory)
111111
?? throw new Exception($"DotVVM Compiler could not be found in the NuGet package cache. "
112-
+ "Please ensure the DotVVM NuGet package is properly installed.");
112+
+ "Please note this feature is supported in DotVVM 5.0.0 and above.");
113113

114114
compilerArgs.Add("exec");
115115
compilerArgs.Add(compilerDll);

0 commit comments

Comments
 (0)