This commit is contained in:
nub31
2025-07-07 16:45:44 +02:00
parent 69f93cac03
commit 7c64d57cbc
21 changed files with 20 additions and 20 deletions

View File

@@ -0,0 +1,25 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>nubc</AssemblyName>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishAot>true</PublishAot>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\NubLang\NubLang.csproj" />
</ItemGroup>
<ItemGroup>
<None Remove="runtime\libruntime_x64.a" />
</ItemGroup>
<ItemGroup>
<None Remove="assets\libruntime_x64.a" />
<EmbeddedResource Include="assets\libruntime_x64.a" />
</ItemGroup>
</Project>