AyCode.Core/AyCode.Core.targets

23 lines
840 B
XML

<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Name>AyCode.Core.targets</Name>
<_ProjectName>FruitBank</_ProjectName>
<!--<GitBranch>$([System.IO.File]::ReadAlltext('$(MsBuildThisFileDirectory)\.git\HEAD').Replace('ref: refs/heads/', '').Trim())</GitBranch>
<_ProjectName>$(GitBranch)</_ProjectName>-->
<TargetFramework Condition="'$(TargetFramework)' == ''">net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<BaseOutputPath>bin\$(_ProjectName)</BaseOutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'SGenOnly'">
<DefineConstants>$(DefineConstants);SGEN_ONLY</DefineConstants>
<Optimize>true</Optimize>
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
</Project>