9016c304de
Even though gtk-sharp cannot be built via MSBuild (yet?), it's better to make the .csproj reflect more closely what you get with the normal build.
92 lines
No EOL
3.6 KiB
XML
92 lines
No EOL
3.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project DefaultTargets="Build" ToolsVersion="3.5" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
|
<ProductVersion>9.0.21022</ProductVersion>
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
<ProjectGuid>{364577DB-9728-4951-AC2C-EDF7A6FCC09D}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<RootNamespace>cairo</RootNamespace>
|
|
<AssemblyName>cairo</AssemblyName>
|
|
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>bin\Debug</OutputPath>
|
|
<DefineConstants>DEBUG;</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
<ConsolePause>false</ConsolePause>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
|
<DebugType>none</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>bin\Release</OutputPath>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
<ConsolePause>false</ConsolePause>
|
|
</PropertyGroup>
|
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
|
<ItemGroup>
|
|
<Compile Include="Antialias.cs" />
|
|
<Compile Include="AssemblyInfo.cs" />
|
|
<Compile Include="Cairo.cs" />
|
|
<Compile Include="Content.cs" />
|
|
<Compile Include="Context.cs" />
|
|
<Compile Include="Device.cs" />
|
|
<Compile Include="DirectFBSurface.cs" />
|
|
<Compile Include="Extend.cs" />
|
|
<Compile Include="FillRule.cs" />
|
|
<Compile Include="Filter.cs" />
|
|
<Compile Include="FontExtents.cs" />
|
|
<Compile Include="FontFace.cs" />
|
|
<Compile Include="FontOptions.cs" />
|
|
<Compile Include="FontSlant.cs" />
|
|
<Compile Include="FontType.cs" />
|
|
<Compile Include="FontWeight.cs" />
|
|
<Compile Include="Format.cs" />
|
|
<Compile Include="GlitzSurface.cs" />
|
|
<Compile Include="Glyph.cs" />
|
|
<Compile Include="Gradient.cs" />
|
|
<Compile Include="HintMetrics.cs" />
|
|
<Compile Include="HintStyle.cs" />
|
|
<Compile Include="ImageSurface.cs" />
|
|
<Compile Include="LinearGradient.cs" />
|
|
<Compile Include="LineCap.cs" />
|
|
<Compile Include="LineJoin.cs" />
|
|
<Compile Include="Matrix.cs" />
|
|
<Compile Include="NativeMethods.cs" />
|
|
<Compile Include="Operator.cs" />
|
|
<Compile Include="Path.cs" />
|
|
<Compile Include="Pattern.cs" />
|
|
<Compile Include="PatternType.cs" />
|
|
<Compile Include="PdfSurface.cs" />
|
|
<Compile Include="PSSurface.cs" />
|
|
<Compile Include="RadialGradient.cs" />
|
|
<Compile Include="Rectangle.cs" />
|
|
<Compile Include="Region.cs" />
|
|
<Compile Include="ScaledFont.cs" />
|
|
<Compile Include="SolidPattern.cs" />
|
|
<Compile Include="Status.cs" />
|
|
<Compile Include="SubpixelOrder.cs" />
|
|
<Compile Include="Surface.cs" />
|
|
<Compile Include="SurfacePattern.cs" />
|
|
<Compile Include="SurfaceType.cs" />
|
|
<Compile Include="SvgSurface.cs" />
|
|
<Compile Include="SvgVersion.cs" />
|
|
<Compile Include="TextExtents.cs" />
|
|
<Compile Include="Win32Surface.cs" />
|
|
<Compile Include="XcbSurface.cs" />
|
|
<Compile Include="XlibSurface.cs" />
|
|
<Compile Include="CairoDebug.cs" />
|
|
<Compile Include="Color.cs" />
|
|
<Compile Include="Distance.cs" />
|
|
<Compile Include="Point.cs" />
|
|
<Compile Include="PointD.cs" />
|
|
</ItemGroup>
|
|
</Project> |