mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
19 lines
682 B
XML
19 lines
682 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.0.1" PrivateAssets="all" />
|
|
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.3" PrivateAssets="all" />
|
|
</ItemGroup>
|
|
|
|
<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" />
|
|
</ItemGroup>
|
|
</Project>
|