This commit is contained in:
nub31
2025-06-13 00:07:14 +02:00
parent f458f95b5a
commit bf7995e12c
64 changed files with 167 additions and 176 deletions

26
src/CLI/CLI.csproj Normal file
View File

@@ -0,0 +1,26 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>nub</AssemblyName>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishAot>true</PublishAot>
<RootNamespace>cli</RootNamespace>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\generation2\generation2.csproj" />
<ProjectReference Include="..\syntax2\syntax2.csproj" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Runtime\entry.s" />
<EmbeddedResource Include="Runtime\nub_memcpy.s" />
<EmbeddedResource Include="Runtime\nub_memset.s" />
<EmbeddedResource Include="Runtime\nub_panic.s" />
<EmbeddedResource Include="Runtime\nub_strcmp.s" />
</ItemGroup>
</Project>