meowlang/compiler/compiler.csproj
Gwendolyn d6bdd08002 loooots of stuff
the typechecker project can collect all the top level types from a file, which is pretty cool I think
(except for pointers, those aren't implemented yet...)
2022-02-13 02:41:16 +01:00

28 lines
809 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" />
<ProjectReference Include="..\typechecker\typechecker.csproj" />
</ItemGroup>
<ItemGroup>
<None Remove="example.mew" />
<Content Include="example.mew">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>