-
Notifications
You must be signed in to change notification settings - Fork 516
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[tests] Add/fix makefiles for .NET projects (#11982)
Add and fix makefiles for .NET test projects to make them easy to test from the command line.
- Loading branch information
1 parent
785bbbe
commit aaf8d70
Showing
5 changed files
with
45 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
all: | ||
msbuild /bl | ||
$(PWD)/bin/MacCatalyst/Debug/MyCatalystApp.app/Contents/MacOS/MyCatalystApp | ||
TOP=../../.. | ||
|
||
include $(TOP)/Make.config | ||
|
||
build: | ||
$(DOTNET6) build /bl *.csproj $(MSBUILD_VERBOSITY) | ||
|
||
run: | ||
$(DOTNET6) build /bl *.csproj $(MSBUILD_VERBOSITY) -t:Run |
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,9 @@ | ||
TOP=../../.. | ||
|
||
include $(TOP)/Make.config | ||
|
||
build: | ||
$(DOTNET6) build /bl *.csproj $(MSBUILD_VERBOSITY) | ||
|
||
run: | ||
$(DOTNET6) build /bl *.csproj $(MSBUILD_VERBOSITY) -t:Run |
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,9 @@ | ||
TOP=../../.. | ||
|
||
include $(TOP)/Make.config | ||
|
||
build: | ||
$(DOTNET6) build /bl *.csproj $(MSBUILD_VERBOSITY) | ||
|
||
run: | ||
$(DOTNET6) build /bl *.csproj $(MSBUILD_VERBOSITY) -t:Run |
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,9 @@ | ||
TOP=../../.. | ||
|
||
include $(TOP)/Make.config | ||
|
||
build: | ||
$(DOTNET6) build /bl *.csproj $(MSBUILD_VERBOSITY) | ||
|
||
run: | ||
$(DOTNET6) build /bl *.csproj $(MSBUILD_VERBOSITY) -t:Run |
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,9 @@ | ||
TOP=../../.. | ||
|
||
include $(TOP)/Make.config | ||
|
||
build: | ||
$(DOTNET6) build /bl *.csproj $(MSBUILD_VERBOSITY) | ||
|
||
run: | ||
$(DOTNET6) build /bl *.csproj $(MSBUILD_VERBOSITY) -t:Run |
aaf8d70
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❌ [CI Build] Tests failed on Build ❌
Tests failed on Build.
API diff
✅ API Diff from stable
View API diff
API & Generator diff
✅ API Diff (from PR only) (no change)
✅ Generator Diff (no change)
Path D:\a\1\s\artifacts\pkg-info\artifacts.json was not found!
Test results
1 tests failed, 220 tests passed.
Failed tests
Pipeline on Agent XAMBOT-1038.BigSur'
[tests] Add/fix makefiles for .NET projects (#11982)