forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSystem.ComponentModel.Primitives.csproj
More file actions
49 lines (49 loc) · 2.9 KB
/
System.ComponentModel.Primitives.csproj
File metadata and controls
49 lines (49 loc) · 2.9 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
39
40
41
42
43
44
45
46
47
48
49
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>$(NetCoreAppCurrent)</TargetFramework>
<!--
Since many resource strings in this library are shown to an end-user,
always generate default resource string values which will be used when UseSystemResourceKeys is true in trimmed apps.
-->
<GenerateResxSourceIncludeDefaultValues>true</GenerateResxSourceIncludeDefaultValues>
</PropertyGroup>
<ItemGroup>
<Compile Include="System\ComponentModel\ISynchronizeInvoke.cs" />
<Compile Include="System\ComponentModel\BrowsableAttribute.cs" />
<Compile Include="System\ComponentModel\CategoryAttribute.cs" />
<Compile Include="System\ComponentModel\Component.cs" />
<Compile Include="System\ComponentModel\ComponentCollection.cs" />
<Compile Include="System\ComponentModel\DescriptionAttribute.cs" />
<Compile Include="System\ComponentModel\DesignerAttribute.cs" />
<Compile Include="System\ComponentModel\DesignerCategoryAttribute.cs" />
<Compile Include="System\ComponentModel\DesignerSerializationVisibility.cs" />
<Compile Include="System\ComponentModel\DesignerSerializationVisibilityAttribute.cs" />
<Compile Include="System\ComponentModel\DesignOnlyAttribute.cs" />
<Compile Include="System\ComponentModel\Design\Serialization\DesignerSerializerAttribute.cs" />
<Compile Include="System\ComponentModel\DisplayNameAttribute.cs" />
<Compile Include="System\ComponentModel\EditorAttribute.cs" />
<Compile Include="System\ComponentModel\EventHandlerList.cs" />
<Compile Include="System\ComponentModel\IComponent.cs" />
<Compile Include="System\ComponentModel\IContainer.cs" />
<Compile Include="System\ComponentModel\ImmutableObjectAttribute.cs" />
<Compile Include="System\ComponentModel\InitializationEventAttribute.cs" />
<Compile Include="System\ComponentModel\InvalidAsynchronousStateException.cs" />
<Compile Include="System\ComponentModel\InvalidEnumArgumentException.cs" />
<Compile Include="System\ComponentModel\ISite.cs" />
<Compile Include="System\ComponentModel\ISupportInitialize.cs" />
<Compile Include="System\ComponentModel\LocalizableAttribute.cs" />
<Compile Include="System\ComponentModel\MergablePropertyAttribute.cs" />
<Compile Include="System\ComponentModel\NotifyParentPropertyAttribute.cs" />
<Compile Include="System\ComponentModel\ParenthesizePropertyNameAttribute.cs" />
<Compile Include="System\ComponentModel\ReadOnlyAttribute.cs" />
<Compile Include="System\ComponentModel\RefreshProperties.cs" />
<Compile Include="System\ComponentModel\RefreshPropertiesAttribute.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Collections.NonGeneric" />
<Reference Include="System.ComponentModel" />
<Reference Include="System.ObjectModel" />
<Reference Include="System.Runtime" />
<Reference Include="System.Threading" />
</ItemGroup>
</Project>