-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace msbuild scripts with nuget package
- Loading branch information
Cathal Noonan
committed
Aug 9, 2023
1 parent
2a554a2
commit a7e3300
Showing
3 changed files
with
3 additions
and
82 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,27 +1 @@ | ||
<Project DefaultTargets="Build"> | ||
<Target Name="Restore"> | ||
<ItemGroup> | ||
<ProjectFiles Include="**/*.*proj" Exclude="*.proj" /> | ||
</ItemGroup> | ||
<Exec Command="npm install --no-audit --ignore-scripts --no-fund" | ||
WorkingDirectory="$(MSBuildThisFileDirectory)/control" /> | ||
<Exec Command="npm audit --omit=dev" | ||
WorkingDirectory="$(MSBuildThisFileDirectory)/control" /> | ||
<MSBuild Targets="Restore" | ||
Projects="@(ProjectFiles)" /> | ||
</Target> | ||
|
||
<Target Name="Build"> | ||
<ItemGroup> | ||
<PacSolutionFiles Include="**/*.cdsproj" /> | ||
</ItemGroup> | ||
<MSBuild Targets="Build" | ||
Properties="Configuration=Release" | ||
Projects="@(PacSolutionFiles)" /> | ||
</Target> | ||
|
||
<Target Name="Clean"> | ||
<Exec Command="git clean -ffdX" | ||
WorkingDirectory="$(MSBuildThisFileDirectory)" /> | ||
</Target> | ||
</Project> | ||
<Project Sdk="Cathal.PcfTools.Proj/1.0.0" DefaultTargets="Build" /> |
This file was deleted.
Oops, something went wrong.
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