17 lines
501 B
XML
17 lines
501 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Remove="Models\**\*.cs" />
|
|
<Compile Remove="Parsing\**\*.cs" />
|
|
<Compile Remove="Utils\**\*.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\XSDVisualiser.Core\XSDVisualiser.Core.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|