This repository has been archived on 2025-10-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nub-lang-archive/src/Nub.Lang.CLI/Nub.Lang.CLI.csproj
nub31 68d86d54ee ...
2025-06-12 23:52:52 +02:00

26 lines
859 B
XML

<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>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Nub.Lang.Generation\Nub.Lang.Generation.csproj" />
<ProjectReference Include="..\Nub.Lang.Syntax\Nub.Lang.Syntax.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>