-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Expand file tree
/
Copy pathSystem.ComponentModel.Primitives.Tests.csproj
More file actions
38 lines (37 loc) · 2.56 KB
/
Copy pathSystem.ComponentModel.Primitives.Tests.csproj
File metadata and controls
38 lines (37 loc) · 2.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>$(NetCoreAppCurrent)</TargetFramework>
<!-- https://github.com/dotnet/runtime/issues/126862 -->
<EnableTrimAnalyzer>false</EnableTrimAnalyzer>
<EnableAotAnalyzer>false</EnableAotAnalyzer>
</PropertyGroup>
<ItemGroup>
<Compile Include="System\ComponentModel\BrowsableAttributeTests.cs" />
<Compile Include="System\ComponentModel\CategoryAttributeTests.cs" />
<Compile Include="System\ComponentModel\ComponentCollectionTests.cs" />
<Compile Include="System\ComponentModel\ComponentTests.cs" />
<Compile Include="System\ComponentModel\DescriptionAttributeTests.cs" />
<Compile Include="System\ComponentModel\DesignerAttributeTests.cs" />
<Compile Include="System\ComponentModel\DesignerCategoryAttributeTests.cs" />
<Compile Include="System\ComponentModel\DesignerSerializationVisibilityAttributeTests.cs" />
<Compile Include="System\ComponentModel\DesignOnlyAttributeTests.cs" />
<Compile Include="System\ComponentModel\DisplayNameAttributeTests.cs" />
<Compile Include="System\ComponentModel\EditorAttributeTests.cs" />
<Compile Include="System\ComponentModel\EventHandlerListTests.cs" />
<Compile Include="System\ComponentModel\ImmutableObjectAttributeTests.cs" />
<Compile Include="System\ComponentModel\InitializationEventAttributeTests.cs" />
<Compile Include="System\ComponentModel\InvalidAsynchronousStateExceptionTests.cs" />
<Compile Include="System\ComponentModel\InvalidEnumArgumentExceptionTests.cs" />
<Compile Include="System\ComponentModel\LocalizableAttributeTests.cs" />
<Compile Include="System\ComponentModel\MergablePropertyAttributeTests.cs" />
<Compile Include="System\ComponentModel\MockISite.cs" />
<Compile Include="System\ComponentModel\NotifyParentPropertyAttributeTests.cs" />
<Compile Include="System\ComponentModel\ParenthesizePropertyNameAttributeTests.cs" />
<Compile Include="System\ComponentModel\ReadOnlyAttributeTests.cs" />
<Compile Include="System\ComponentModel\RefreshPropertiesAttributeTests.cs" />
<!-- Reference the `NetCoreAppMinimum` build which has a functional BinaryFormatter and force a private copy to ensure it's not excluded -->
<ProjectReference Include="$(LibrariesProjectRoot)System.Runtime.Serialization.Formatters\src\System.Runtime.Serialization.Formatters.csproj"
Private="true"
SetTargetFramework="TargetFramework=$(NetCoreAppMinimum)" Condition="'$(TargetOS)' != 'browser' and '$(TargetOS)' != 'wasi'" />
</ItemGroup>
</Project>