tangxu
2024-11-04 ebd031e3bed6c1cfddce8fc9b98f7f9e95fb9e32
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
<Project Sdk="Microsoft.NET.Sdk">
  <PropertyGroup>
    <OutputType>Library</OutputType>
    <Nullable>enable</Nullable>
    <UseWindowsForms>true</UseWindowsForms>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>Microsoft.Drawing</RootNamespace>
    <AssemblyName>Microsoft.Drawing</AssemblyName>
    <TargetFramework>net6.0-windows</TargetFramework>
    <EnableDefaultCompileItems>false</EnableDefaultCompileItems>
    <EnableDefaultEmbeddedResourceItems>false</EnableDefaultEmbeddedResourceItems>
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
    <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
    <OutputPath>..\_Output\Debug\</OutputPath>
    <DocumentationFile>..\_Output\Debug\Microsoft.Drawing.xml</DocumentationFile>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
    <OutputPath>..\_Output\Release\</OutputPath>
    <DocumentationFile>..\_Output\Release\Microsoft.Drawing.xml</DocumentationFile>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="System.Core" />
    <Reference Include="System.Drawing" />
    <Reference Include="System.Windows.Forms" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="Classes\ClipGraphics.cs" />
    <Compile Include="Classes\DoubleBufferedGraphics.cs" />
    <Compile Include="Classes\LockedBitmapData.cs" />
    <Compile Include="Classes\PixelOffsetModeGraphics.cs" />
    <Compile Include="Classes\SmoothingModeGraphics.cs" />
    <Compile Include="Classes\TextRenderingHintGraphics.cs" />
    <Compile Include="Classes\TranslateGraphics.cs" />
    <Compile Include="Interfaces\IWindow.cs" />
    <Compile Include="Properties\AssemblyInfo.cs" />
    <Compile Include="Structs\ColorVector.cs" />
    <Compile Include="Structs\ColorVectorConverter.cs" />
    <Compile Include="Util\BufferedGraphicsEx.cs" />
    <Compile Include="Util\GraphicsEx.cs" />
    <Compile Include="Util\PointEx.cs" />
    <Compile Include="Util\RectangleEx.cs" />
    <Compile Include="Util\SizeEx.cs" />
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\Microsoft.Win32\Microsoft.Win32.csproj">
      <Project>{b1d6b045-127c-47fc-adf2-ce3957f4d694}</Project>
      <Name>Microsoft.Win32</Name>
    </ProjectReference>
    <ProjectReference Include="..\Microsoft\Microsoft.csproj">
      <Project>{f2a4d4c2-a948-4351-9d46-117f372ab4a4}</Project>
      <Name>Microsoft</Name>
    </ProjectReference>
  </ItemGroup>
</Project>