2020-10-07 03:15:32 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2022-11-16 02:53:22 +01:00
|
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
2020-10-07 03:15:32 +02:00
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
<RootNamespace>LibHacBuild.CodeGen</RootNamespace>
|
|
|
|
|
<IsPackable>False</IsPackable>
|
|
|
|
|
<NoWarn>CS0649;CS0169</NoWarn>
|
|
|
|
|
<EnableDefaultItems>false</EnableDefaultItems>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="*.cs" />
|
|
|
|
|
<Compile Include="Stage2\*.cs" />
|
|
|
|
|
<EmbeddedResource Include="*.txt" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-02-06 05:39:00 +01:00
|
|
|
|
<PackageReference Include="Nuke.Common" Version="6.3.0" />
|
2020-10-07 03:15:32 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\src\LibHac\LibHac.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|