-
Notifications
You must be signed in to change notification settings - Fork 0
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
7eb4444
commit 0679381
Showing
4 changed files
with
87 additions
and
64 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,42 @@ | ||
$devopsExtensions = @( | ||
@{ | ||
Name = "Endjin.RecommendedPractices.Build" | ||
Version = "[1.5.10,2.0)" | ||
Process = "tasks/build.process.ps1" | ||
} | ||
) | ||
|
||
# Load the tasks and process | ||
. endjin-devops.tasks | ||
|
||
# | ||
# Build process configuration | ||
# | ||
$SolutionToBuild = (Resolve-Path (Join-Path $here "./Solutions/Ais.Net.Models.sln")).Path | ||
|
||
|
||
# Set default build task | ||
task . FullBuild | ||
|
||
# | ||
# Build Process Extensibility Points - uncomment and implement as required | ||
# | ||
|
||
# task RunFirst {} | ||
# task PreInit {} | ||
# task PostInit {} | ||
# task PreVersion {} | ||
# task PostVersion {} | ||
# task PreBuild {} | ||
# task PostBuild {} | ||
# task PreTest {} | ||
# task PostTest {} | ||
# task PreTestReport {} | ||
# task PostTestReport {} | ||
# task PreAnalysis {} | ||
# task PostAnalysis {} | ||
# task PrePackage {} | ||
# task PostPackage {} | ||
# task PrePublish {} | ||
# task PostPublish {} | ||
# task RunLast {} |
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 |
---|---|---|
|
@@ -396,3 +396,8 @@ FodyWeavers.xsd | |
|
||
# JetBrains Rider | ||
*.sln.iml | ||
|
||
# Build outputs | ||
_codeCoverage/ | ||
_packages/ | ||
*.sbom.* |
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