-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSadConsole.Drawing.csproj
117 lines (117 loc) · 5.67 KB
/
SadConsole.Drawing.csproj
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{A1590881-77AA-4E44-AEDB-FDCC6356E1E6}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>SadConsole.Core.Windows</RootNamespace>
<AssemblyName>SadConsole.Drawing</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>TRACE;DEBUG;DRAWING</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Debug\SadConsole.Drawing.xml</DocumentationFile>
<Prefer32Bit>false</Prefer32Bit>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE;MONOGAME</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Release\SadConsole.Drawing.xml</DocumentationFile>
<Prefer32Bit>false</Prefer32Bit>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'ReleaseBuild|AnyCPU'">
<OutputPath>bin\ReleaseBuild\</OutputPath>
<DefineConstants>TRACE;MONOGAME</DefineConstants>
<DocumentationFile>bin\ReleaseBuild\SadConsole.Drawing.xml</DocumentationFile>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>false</Prefer32Bit>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'DebugBuild|AnyCPU'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\DebugBuild\</OutputPath>
<DefineConstants>TRACE;DEBUG;MONOGAME</DefineConstants>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DocumentationFile>bin\DebugBuild\SadConsole.Drawing.xml</DocumentationFile>
<DebugType>full</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Drawing" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Ansi\AnsiWriter.cs" />
<Compile Include="Ansi\Document.cs" />
<Compile Include="Ansi\Helpers.cs" />
<Compile Include="Ansi\State.cs" />
<Compile Include="Cell.cs" />
<Compile Include="CellAppearance.cs" />
<Compile Include="ColoredString.Commands.cs" />
<Compile Include="ColoredString.cs" />
<Compile Include="ColorExtensions.cs" />
<Compile Include="Cursor.cs" />
<Compile Include="Font.cs" />
<Compile Include="ICellAppearance.cs" />
<Compile Include="ITextSurface.cs" />
<Compile Include="ITextSurfaceRenderer.cs" />
<Compile Include="MathHelper.cs" />
<Compile Include="PointExtensions.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Render.Drawing.cs" />
<Compile Include="Serializer.cs" />
<Compile Include="StringExtensions.cs" />
<Compile Include="StringParser\ParseCommandBase.cs" />
<Compile Include="StringParser\ParseCommandGlyph.cs" />
<Compile Include="StringParser\ParseCommandRecolor.cs" />
<Compile Include="StringParser\ParseCommandStacks.cs" />
<Compile Include="StringParser\ParseCommandUndo.cs" />
<Compile Include="SurfaceEditor.cs" />
<Compile Include="TextSurface.cs" />
<Compile Include="TextSurfaceBasic.cs" />
<Compile Include="TextSurfaceRenderer.cs" />
<Compile Include="XamlExtensions.cs" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
<PropertyGroup>
<PostBuildEvent Condition=" '$(Configuration)' == 'ReleaseBuild'">nuget pack $(MSBuildProjectFullPath) -Symbols -Prop Configuration=ReleaseBuild -OutputDirectory $(MSBuildProjectDirectory)\..\..\..\nuget\</PostBuildEvent>
<PostBuildEvent Condition=" '$(Configuration)' == 'DebugBuild'">nuget pack $(MSBuildProjectFullPath) -Symbols -Prop Configuration=DebugBuild -OutputDirectory $(MSBuildProjectDirectory)\..\..\..\nuget\</PostBuildEvent>
</PropertyGroup>
</Project>