Base files

This commit is contained in:
Samuele Lorefice
2025-01-22 00:43:53 +01:00
commit 2a051cf098
10 changed files with 874 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>disable</Nullable>
<RootNamespace>CodeGenerator</RootNamespace>
<OutputType>Exe</OutputType>
<LangVersion>9</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="KaitaiStruct.Runtime.CSharp" Version="0.10.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.12.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0" />
<PackageReference Include="System.CodeDom" Version="9.0.1" />
</ItemGroup>
<ItemGroup>
<None Update="empty.blend">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>