mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
* Source gen reorganizations + component unpause generator. This commit (and subsequent commits) aims to clean up our Roslyn plugin (source gens + analyzers) stack to more sanely re-use common code I also built a new source-gen that automatically generates unpausing implementations for components, incrementing attributed TimeSpan field when unpaused. * Fix warnings in all Roslyn projects
26 lines
738 B
XML
26 lines
738 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<ItemGroup>
|
|
<!-- Needed for NotNullableFlagAnalyzer. -->
|
|
<Compile Include="..\Robust.Shared\Analyzers\NotNullableFlagAttribute.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- Needed for FriendAnalyzer. -->
|
|
<Compile Include="..\Robust.Shared\Analyzers\AccessAttribute.cs" />
|
|
<Compile Include="..\Robust.Shared\Analyzers\AccessPermissions.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- Needed for PreferGenericVariantAnalyzer. -->
|
|
<Compile Include="..\Robust.Shared\Analyzers\PreferGenericVariantAttribute.cs" />
|
|
</ItemGroup>
|
|
|
|
<Import Project="../Robust.Roslyn.Shared/Robust.Roslyn.Shared.props" />
|
|
|
|
<PropertyGroup>
|
|
<Nullable>disable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|