meowlang/compiler/compiler.csproj
2022-02-12 02:29:25 +01:00

27 lines
738 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>meow</AssemblyName>
<LangVersion>10</LangVersion>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<Company />
<Product>meow compiler</Product>
<RootNamespace>meowlang.compiler</RootNamespace>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\parser\parser.csproj" />
</ItemGroup>
<ItemGroup>
<None Remove="example.mew" />
<Content Include="example.mew">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>