f7a1d98d8a
* Add affected usage with tag math * use this branch as a test branch * adjust test * fix github action * build refactor to get affected work * Lazy affected * put if statement on job * add conditions around build and publish for linux * affected tests and small refactor * fmt * verbose * full checkout * more testing and made things more clear * adjust installer test branch * add comments * use zip on release * detect main release * use right trigger for release * fix build * maybe fix if statement...version env var don't work * use current branch, not target branch * test installer should be stored * write to github action env vars * use the env var correctly * format * set the output version as before --------- Co-authored-by: Jedd Morgan <45512892+JR-Morgan@users.noreply.github.com>
17 lines
503 B
XML
17 lines
503 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<Configurations>Debug;Release;Local</Configurations>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Bullseye" />
|
|
<PackageReference Include="Glob" />
|
|
<PackageReference Include="Microsoft.Build" />
|
|
<PackageReference Include="Semver" />
|
|
<PackageReference Include="SimpleExec" />
|
|
</ItemGroup>
|
|
</Project>
|