-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
16a96ac
commit 2f207ed
Showing
4 changed files
with
18 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
.PHONY: help | ||
help: ## Display this help screen | ||
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}' | ||
|
||
.PHONY: all | ||
all: build copy ## Build and Copy | ||
|
||
.PHONY: build | ||
build: ## Build csproj | ||
rm -rf output | ||
dotnet build --no-incremental RoslynAnalyzerTemplate/RoslynAnalyzerTemplate.csproj --output output --configuration Release | ||
|
||
.PHONY: copy | ||
copy: ## Copy dll file to Unity Project | ||
rm -f RoslynAnalyzerTemplate.Unity/Assets/Plugins/RoslynAnalyzerTemplate/RoslynAnalyzerTemplate.dll* | ||
cp output/RoslynAnalyzerTemplate.dll RoslynAnalyzerTemplate.Unity/Assets/Plugins/RoslynAnalyzerTemplate/RoslynAnalyzerTemplate.dll |
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
2 changes: 1 addition & 1 deletion
2
...zerTemplate/RoslynAnalyzerTemplate.asmdef → ...ynAnalyzerTemplate/DefaultAssembly.asmdef
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
Binary file added
BIN
+11.5 KB
...ynAnalyzerTemplate.Unity/Assets/Plugins/RoslynAnalyzerTemplate/RoslynAnalyzerTemplate.dll
Binary file not shown.