23 lines
900 B
XML
23 lines
900 B
XML
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<Name>AyCode.Project.targets</Name>
|
|
|
|
<_ProjectName>FruitBank</_ProjectName>
|
|
<_TargetFramework>net9.0</_TargetFramework>
|
|
|
|
<!--<GitBranch>$([System.IO.File]::ReadAlltext('$(MsBuildThisFileDirectory)\.git\HEAD').Replace('ref: refs/heads/', '').Trim())</GitBranch>
|
|
<_ProjectName>$(GitBranch)</_ProjectName>-->
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<Configurations>Debug;Release;Product</Configurations>
|
|
|
|
<BaseOutputPath>bin\$(_ProjectName)</BaseOutputPath>
|
|
<_AyCodeCoresReferenceBuildSubPath>$(_ProjectName)\$(Configuration)\$(_TargetFramework)</_AyCodeCoresReferenceBuildSubPath>
|
|
</PropertyGroup>
|
|
|
|
<Target Name="Test" AfterTargets="AfterBuild">
|
|
<Message Importance="High" Text="AYCODE.CORE(S) PATH: $(_AyCodeCoresReferenceBuildSubPath)"/>
|
|
</Target>
|
|
|
|
</Project> |