-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix real scenario execution failure (#156)
* Update libraries.csproj deps version * Update tests.csproj deps version * Add build.proj in root to make it possible to use dotnet build/clean/restore/test from the root. * Bump to .NET 8.0, bump project versions. * Bump dotnet.yml version to .NET 8 --------- Co-authored-by: carlossanlop <[email protected]>
- Loading branch information
1 parent
54afaa8
commit cc8e3e8
Showing
8 changed files
with
33 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<Project DefaultTargets="Build"> | ||
<ItemGroup> | ||
<Solution Include="**\*.sln" /> | ||
<TestProject Include="**\**\tests\*.csproj" /> | ||
</ItemGroup> | ||
|
||
<Target Name="Clean"> | ||
<MSBuild Projects="@(Solution)" Targets="Clean" /> | ||
</Target> | ||
|
||
<Target Name="Restore"> | ||
<MSBuild Projects="@(Solution)" Targets="Restore" /> | ||
</Target> | ||
|
||
<Target Name="Build"> | ||
<MSBuild Projects="@(Solution)" Targets="Build" /> | ||
</Target> | ||
|
||
<Target Name="VSTest"> | ||
<MSBuild Projects="@(TestProject)" Targets="VSTest" /> | ||
</Target> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters