-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathSystem.Windows.Forms.Design.Tests.csproj
More file actions
67 lines (58 loc) · 2.57 KB
/
System.Windows.Forms.Design.Tests.csproj
File metadata and controls
67 lines (58 loc) · 2.57 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<SourceTargetFramework>$(NetCurrent)</SourceTargetFramework>
<TargetFramework>$(NetCurrent)-windows7.0</TargetFramework>
<DisableTransitiveFrameworkReferences>true</DisableTransitiveFrameworkReferences>
<AssemblyName>System.Windows.Forms.Design.Tests</AssemblyName>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
<NoWarn>$(NoWarn);SYSLIB0050;SYSLIB0051;SYSLIB0011</NoWarn>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Remove="Resources\telescope_01.wmf" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AwesomeAssertions" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" />
<PackageReference Include="System.Runtime.Serialization.Formatters" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\test\util\System.Windows.Forms\System.Windows.Forms.TestUtilities.csproj" />
<ProjectReference Include="..\..\src\System.Windows.Forms.Design.csproj" />
<ProjectReference Include="..\..\..\System.Design\src\System.Design.Facade.csproj" />
<ProjectReference Include="..\..\..\System.Drawing.Design\src\System.Drawing.Design.Facade.csproj" />
</ItemGroup>
<ItemGroup>
<!-- workaround for https://github.com/dotnet/sdk/issues/3254 -->
<Reference Include="$(ArtifactsBinDir)\System.Design.Facade\$(Configuration)\$(SourceTargetFramework)\System.Design.dll" />
</ItemGroup>
<ItemGroup>
<Content Include="Resources\telescope_01.wmf">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\16x16.bmp">
<LogicalName>System.Drawing.Design.Tests.16x16.bmp</LogicalName>
</EmbeddedResource>
<EmbeddedResource Include="Resources\24x16.bmp">
<LogicalName>System.Drawing.Design.Tests.24x16.bmp</LogicalName>
</EmbeddedResource>
<EmbeddedResource Include="Resources\16x24.bmp">
<LogicalName>System.Drawing.Design.Tests.16x24.bmp</LogicalName>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Update="Resources\*.*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Reference Include="AxInterop.WMPLib">
<HintPath>$(ArtifactsBinDir)\AxHosts\$(Configuration)\$(NetFxTFM)\AxInterop.WMPLib.dll</HintPath>
</Reference>
<Reference Include="Interop.WMPLib">
<HintPath>$(ArtifactsBinDir)\AxHosts\$(Configuration)\$(NetFxTFM)\Interop.WMPLib.dll</HintPath>
</Reference>
</ItemGroup>
</Project>