mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 09:37:03 +02:00
20 lines
735 B
XML
20 lines
735 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<ItemGroup>
|
|
<Compile Link="XamlX\filename" Include="../XamlX/src/XamlX/**/*.cs" />
|
|
<Compile Remove="../XamlX/src/XamlX/**/SreTypeSystem.cs" />
|
|
<Compile Remove="../XamlX/src/XamlX/obj/**" />
|
|
<Compile Include="..\Robust.Client\UserInterface\ControlPropertyAccess.cs" />
|
|
<!-- we need to share diagnostics codes but aren't ready to migrate robust roslyn stuff to net10.0 from netstandard2.0 yet -->
|
|
<Compile Include="..\Robust.Xaml\DiagnosticsCodes.cs" />
|
|
</ItemGroup>
|
|
|
|
<Import Project="../Robust.Roslyn.Shared/Robust.Roslyn.Shared.props" />
|
|
|
|
<PropertyGroup>
|
|
<Nullable>enable</Nullable>
|
|
<WarningsAsErrors>nullable</WarningsAsErrors>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|