Svg.csproj 19.9 KB
Newer Older
1
2
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
davescriven's avatar
davescriven committed
3
4
5
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6
    <ProductVersion>9.0.30729</ProductVersion>
davescriven's avatar
davescriven committed
7
8
9
10
11
12
13
14
15
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>{886A98C5-37C0-4E8B-885E-30C1D2F98B47}</ProjectGuid>
    <OutputType>Library</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>Svg</RootNamespace>
    <AssemblyName>Svg</AssemblyName>
    <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent>
    <FileUpgradeFlags>
    </FileUpgradeFlags>
16
    <OldToolsVersion>3.5</OldToolsVersion>
davescriven's avatar
davescriven committed
17
18
    <UpgradeBackupLocation>
    </UpgradeBackupLocation>
19
    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
20
    <IsWebBootstrapper>false</IsWebBootstrapper>
Tebjan Halm's avatar
Tebjan Halm committed
21
22
23
24
25
26
27
28
    <SccProjectName>
    </SccProjectName>
    <SccLocalPath>
    </SccLocalPath>
    <SccAuxPath>
    </SccAuxPath>
    <SccProvider>
    </SccProvider>
davescriven's avatar
davescriven committed
29
30
31
32
33
34
35
36
37
38
39
40
41
42
    <PublishUrl>publish\</PublishUrl>
    <Install>true</Install>
    <InstallFrom>Disk</InstallFrom>
    <UpdateEnabled>false</UpdateEnabled>
    <UpdateMode>Foreground</UpdateMode>
    <UpdateInterval>7</UpdateInterval>
    <UpdateIntervalUnits>Days</UpdateIntervalUnits>
    <UpdatePeriodically>false</UpdatePeriodically>
    <UpdateRequired>false</UpdateRequired>
    <MapFileExtensions>true</MapFileExtensions>
    <ApplicationRevision>0</ApplicationRevision>
    <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
    <UseApplicationTrust>false</UseApplicationTrust>
    <BootstrapperEnabled>true</BootstrapperEnabled>
Tebjan Halm's avatar
Tebjan Halm committed
43
    <TargetFrameworkProfile />
Tebjan Halm's avatar
Tebjan Halm committed
44
45
    <AllowUnsafeBlocks>False</AllowUnsafeBlocks>
    <NoStdLib>False</NoStdLib>
tebjan's avatar
tebjan committed
46
47
48
49
50
    <TreatWarningsAsErrors>False</TreatWarningsAsErrors>
    <NoWin32Manifest>False</NoWin32Manifest>
    <DelaySign>False</DelaySign>
    <AssemblyOriginatorKeyMode>File</AssemblyOriginatorKeyMode>
    <IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
davescriven's avatar
davescriven committed
51
52
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
Tebjan Halm's avatar
Tebjan Halm committed
53
    <DebugType>Full</DebugType>
davescriven's avatar
davescriven committed
54
    <Optimize>false</Optimize>
James Welle's avatar
James Welle committed
55
    <OutputPath>..\..\vvvv\public\common\src\thirdparty\</OutputPath>
56
    <DefineConstants>TRACE;DEBUG;REFLECTION</DefineConstants>
davescriven's avatar
davescriven committed
57
58
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
59
    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
Tebjan Halm's avatar
Tebjan Halm committed
60
    <DebugSymbols>true</DebugSymbols>
61
62
    <DocumentationFile>
    </DocumentationFile>
Eric Domke's avatar
Eric Domke committed
63
    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
64
    <NoWarn>1591</NoWarn>
davescriven's avatar
davescriven committed
65
66
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
Tebjan Halm's avatar
Tebjan Halm committed
67
    <DebugType>PdbOnly</DebugType>
tebjan's avatar
tebjan committed
68
    <Optimize>True</Optimize>
69
    <OutputPath>bin\Release\</OutputPath>
davescriven's avatar
davescriven committed
70
71
72
73
74
    <DefineConstants>TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <CodeAnalysisRules>
    </CodeAnalysisRules>
75
    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
Tebjan Halm's avatar
Tebjan Halm committed
76
    <DebugSymbols>false</DebugSymbols>
Tebjan Halm's avatar
Tebjan Halm committed
77
    <DocumentationFile>bin\Release\Svg.XML</DocumentationFile>
78
    <NoWarn>1591</NoWarn>
davescriven's avatar
davescriven committed
79
  </PropertyGroup>
tebjan's avatar
tebjan committed
80
  <PropertyGroup>
81
    <SignAssembly>true</SignAssembly>
tebjan's avatar
tebjan committed
82
83
  </PropertyGroup>
  <PropertyGroup>
tebjan's avatar
tebjan committed
84
    <AssemblyOriginatorKeyFile>svgkey.snk</AssemblyOriginatorKeyFile>
tebjan's avatar
tebjan committed
85
  </PropertyGroup>
davescriven's avatar
davescriven committed
86
87
88
89
90
91
92
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="System.Drawing" />
    <Reference Include="System.Web" />
    <Reference Include="System.Xml" />
  </ItemGroup>
  <ItemGroup>
93
    <Compile Include="Basic Shapes\SvgImage.cs" />
94
    <Compile Include="Basic Shapes\SvgMarkerElement.cs" />
95
    <Compile Include="Basic Shapes\SvgPathBasedElement.cs" />
96
    <Compile Include="Basic Shapes\SvgVisualElement.cs" />
davescriven's avatar
davescriven committed
97
98
99
100
101
    <Compile Include="Basic Shapes\SvgCircle.cs" />
    <Compile Include="Basic Shapes\SvgEllipse.cs" />
    <Compile Include="Basic Shapes\SvgLine.cs" />
    <Compile Include="Basic Shapes\SvgPolygon.cs" />
    <Compile Include="Basic Shapes\SvgPolyline.cs" />
102
    <Compile Include="Clipping and Masking\ISvgClipable.cs" />
103
    <Compile Include="Clipping and Masking\SvgClipRule.cs" />
104
105
    <Compile Include="Clipping and Masking\SvgClipPath.cs" />
    <Compile Include="Clipping and Masking\SvgMask.cs" />
106
    <Compile Include="DataTypes\ISvgSupportsCoordinateUnits.cs" />
Eric Domke's avatar
Eric Domke committed
107
    <Compile Include="DataTypes\SvgPointCollection.cs" />
108
    <Compile Include="DataTypes\SvgTextTransformation.cs" />
Eric Domke's avatar
Eric Domke committed
109
    <Compile Include="DataTypes\SvgTextDecoration.cs" />
Eric Domke's avatar
Eric Domke committed
110
111
112
113
114
    <Compile Include="DataTypes\SvgTextLengthAdjust.cs" />
    <Compile Include="DataTypes\SvgTextPathMethod.cs" />
    <Compile Include="DataTypes\SvgTextPathSpacing.cs" />
    <Compile Include="DataTypes\XmlSpaceHandling.cs" />
    <Compile Include="Document Structure\SvgSymbol.cs" />
115
    <Compile Include="Exceptions\SvgMemoryException.cs" />
116
    <Compile Include="ExtensionMethods\UriExtensions.cs" />
Eric Domke's avatar
Eric Domke committed
117
    <Compile Include="Filter Effects\ImageBuffer.cs" />
118
    <Compile Include="Painting\GenericBoundable.cs" />
Eric Domke's avatar
Eric Domke committed
119
120
    <Compile Include="Painting\SvgFallbackPaintServer .cs" />
    <Compile Include="Paths\CoordinateParser.cs" />
Eric Domke's avatar
Eric Domke committed
121
122
    <Compile Include="Rendering\IGraphicsProvider.cs" />
    <Compile Include="Rendering\ISvgRenderer.cs" />
123
    <Compile Include="Rendering\SvgRendering.cs" />
Eric Domke's avatar
Eric Domke committed
124
    <Compile Include="SvgElementStyle.cs" />
125
    <Compile Include="SvgNodeReader.cs" />
Eric Domke's avatar
Eric Domke committed
126
127
    <Compile Include="Css\CssQuery.cs" />
    <Compile Include="Css\SvgElementOps.cs" />
128
    <Compile Include="DataTypes\SvgAspectRatioConverter.cs" />
129
130
    <Compile Include="DataTypes\SvgFontStyle.cs" />
    <Compile Include="DataTypes\SvgFontVariant.cs" />
131
    <Compile Include="DataTypes\SvgMarkerUnits.cs" />
132
    <Compile Include="DataTypes\SvgOrient.cs" />
davescriven's avatar
davescriven committed
133
    <Compile Include="DataTypes\ISvgViewPort.cs" />
Tebjan Halm's avatar
Tebjan Halm committed
134
    <Compile Include="DataTypes\SvgAspectRatio.cs" />
135
    <Compile Include="DataTypes\SvgColourInterpolation.cs" />
davescriven's avatar
davescriven committed
136
    <Compile Include="DataTypes\SvgElementStyle.cs" />
137
    <Compile Include="DataTypes\SvgCoordinateUnits.cs" />
138
    <Compile Include="DataTypes\SvgFontWeight.cs" />
Eric Domke's avatar
Eric Domke committed
139
    <Compile Include="DataTypes\SvgOrientConverter.cs" />
140
    <Compile Include="DataTypes\SvgOverflow.cs" />
davescriven's avatar
davescriven committed
141
142
    <Compile Include="DataTypes\SvgUnitCollection.cs" />
    <Compile Include="DataTypes\SvgViewBox.cs" />
143
    <Compile Include="Document Structure\SvgSwitch.cs" />
144
    <Compile Include="Document Structure\SvgTitle.cs" />
145
    <Compile Include="Document Structure\SvgDocumentMetadata.cs" />
Eric Domke's avatar
Eric Domke committed
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
    <Compile Include="External\ExCSS\IToString.cs" />
    <Compile Include="External\ExCSS\Lexer.cs" />
    <Compile Include="External\ExCSS\Model\Enumerations.cs" />
    <Compile Include="External\ExCSS\Model\Extensions\CharacterExtensions.cs" />
    <Compile Include="External\ExCSS\Model\Extensions\StringExtensions.cs" />
    <Compile Include="External\ExCSS\Model\FunctionBuffer.cs" />
    <Compile Include="External\ExCSS\Model\HtmlEncoding.cs" />
    <Compile Include="External\ExCSS\Model\ICssRules.cs" />
    <Compile Include="External\ExCSS\Model\ICssSelector.cs" />
    <Compile Include="External\ExCSS\Model\IStyleDeclaration.cs" />
    <Compile Include="External\ExCSS\Model\ISupportsMedia.cs" />
    <Compile Include="External\ExCSS\Model\MediaTypeList.cs" />
    <Compile Include="External\ExCSS\Model\Rules\AggregateRule.cs" />
    <Compile Include="External\ExCSS\Model\Rules\CharacterSetRule.cs" />
    <Compile Include="External\ExCSS\Model\Rules\ConditionalRule.cs" />
    <Compile Include="External\ExCSS\Model\Rules\DocumentRule.cs" />
    <Compile Include="External\ExCSS\Model\Rules\FontFaceRule.cs" />
    <Compile Include="External\ExCSS\Model\Rules\GenericRule.cs" />
    <Compile Include="External\ExCSS\Model\Rules\ImportRule.cs" />
    <Compile Include="External\ExCSS\Model\Rules\IRuleContainer.cs" />
    <Compile Include="External\ExCSS\Model\Rules\KeyframeRule.cs" />
    <Compile Include="External\ExCSS\Model\Rules\KeyframesRule.cs" />
    <Compile Include="External\ExCSS\Model\Rules\MediaRule.cs" />
    <Compile Include="External\ExCSS\Model\Rules\NamespaceRule.cs" />
    <Compile Include="External\ExCSS\Model\Rules\PageRule.cs" />
    <Compile Include="External\ExCSS\Model\Rules\RuleSet.cs" />
    <Compile Include="External\ExCSS\Model\Rules\StyleDeclaration.cs" />
    <Compile Include="External\ExCSS\Model\Rules\StyleRule.cs" />
    <Compile Include="External\ExCSS\Model\Rules\SupportsRule.cs" />
    <Compile Include="External\ExCSS\Model\Selector\AggregateSelectorList.cs" />
    <Compile Include="External\ExCSS\Model\Selector\BaseSelector.cs" />
    <Compile Include="External\ExCSS\Model\Selector\CombinatorSelector.cs" />
    <Compile Include="External\ExCSS\Model\Selector\ComplexSelector.cs" />
    <Compile Include="External\ExCSS\Model\Selector\FirstChildSelector.cs" />
    <Compile Include="External\ExCSS\Model\Selector\LastChildSelector.cs" />
    <Compile Include="External\ExCSS\Model\Selector\MultipleSelectorList.cs" />
    <Compile Include="External\ExCSS\Model\Selector\NthChildSelector.cs" />
    <Compile Include="External\ExCSS\Model\Selector\NthFirstChildSelector.cs" />
    <Compile Include="External\ExCSS\Model\Selector\NthLastChildSelector.cs" />
    <Compile Include="External\ExCSS\Model\Selector\NthLastOfTypeSelector.cs" />
    <Compile Include="External\ExCSS\Model\Selector\NthOfTypeSelector.cs" />
    <Compile Include="External\ExCSS\Model\Selector\SelectorFactory.cs" />
    <Compile Include="External\ExCSS\Model\Selector\SelectorList.cs" />
    <Compile Include="External\ExCSS\Model\Selector\SimpleSelector.cs" />
    <Compile Include="External\ExCSS\Model\Specification.cs" />
    <Compile Include="External\ExCSS\Model\TextBlocks\Block.cs" />
    <Compile Include="External\ExCSS\Model\TextBlocks\BracketBlock.cs" />
    <Compile Include="External\ExCSS\Model\TextBlocks\CharacterBlock.cs" />
    <Compile Include="External\ExCSS\Model\TextBlocks\CommentBlock.cs" />
    <Compile Include="External\ExCSS\Model\TextBlocks\DelimiterBlock.cs" />
    <Compile Include="External\ExCSS\Model\TextBlocks\MatchBlock.cs" />
    <Compile Include="External\ExCSS\Model\TextBlocks\NumericBlock.cs" />
    <Compile Include="External\ExCSS\Model\TextBlocks\PipeBlock.cs" />
    <Compile Include="External\ExCSS\Model\TextBlocks\RangeBlock.cs" />
    <Compile Include="External\ExCSS\Model\TextBlocks\SpecialCharacter.cs" />
    <Compile Include="External\ExCSS\Model\TextBlocks\StringBlock.cs" />
    <Compile Include="External\ExCSS\Model\TextBlocks\SymbolBlock.cs" />
    <Compile Include="External\ExCSS\Model\TextBlocks\UnitBlock.cs" />
    <Compile Include="External\ExCSS\Model\Values\GenericFunction.cs" />
    <Compile Include="External\ExCSS\Model\Values\HtmlColor.cs" />
    <Compile Include="External\ExCSS\Model\Values\InheritTerm.cs" />
    <Compile Include="External\ExCSS\Model\Values\PrimitiveTerm.cs" />
    <Compile Include="External\ExCSS\Model\Values\Property.cs" />
    <Compile Include="External\ExCSS\Model\Values\Term.cs" />
    <Compile Include="External\ExCSS\Model\Values\TermList.cs" />
    <Compile Include="External\ExCSS\Parser.Blocks.cs" />
    <Compile Include="External\ExCSS\Parser.cs" />
    <Compile Include="External\ExCSS\StyleSheet.cs" />
    <Compile Include="External\ExCSS\StylesheetParseError.cs" />
    <Compile Include="External\ExCSS\StylesheetReader.cs" />
216
    <Compile Include="Extensibility\SvgForeignObject.cs" />
Eric Domke's avatar
Eric Domke committed
217
    <Compile Include="Extensions.cs" />
Eric Domke's avatar
Eric Domke committed
218
219
220
221
222
223
224
225
226
227
228
229
230
231
    <Compile Include="External\Fizzler\Either.cs" />
    <Compile Include="External\Fizzler\HumanReadableSelectorGenerator.cs" />
    <Compile Include="External\Fizzler\IElementOps.cs" />
    <Compile Include="External\Fizzler\ISelectorGenerator.cs" />
    <Compile Include="External\Fizzler\NamespacePrefix.cs" />
    <Compile Include="External\Fizzler\Parser.cs" />
    <Compile Include="External\Fizzler\Reader.cs" />
    <Compile Include="External\Fizzler\Selector.cs" />
    <Compile Include="External\Fizzler\SelectorGenerator.cs" />
    <Compile Include="External\Fizzler\SelectorGeneratorTee.cs" />
    <Compile Include="External\Fizzler\SelectorsCachingCompiler.cs" />
    <Compile Include="External\Fizzler\Token.cs" />
    <Compile Include="External\Fizzler\Tokener.cs" />
    <Compile Include="External\Fizzler\TokenKind.cs" />
James Welle's avatar
James Welle committed
232
    <Compile Include="Painting\ISvgBoundable.cs" />
Eric Domke's avatar
Eric Domke committed
233
    <Compile Include="Painting\SvgDeferredPaintServer.cs" />
234
    <Compile Include="Painting\SvgMarker.cs" />
davescriven's avatar
davescriven committed
235
236
237
    <Compile Include="Document Structure\SvgDefinitionList.cs" />
    <Compile Include="Document Structure\SvgDescription.cs" />
    <Compile Include="Document Structure\SvgFragment.cs" />
238
    <Compile Include="Document Structure\SvgGroup.cs" />
davescriven's avatar
davescriven committed
239
    <Compile Include="Document Structure\SvgUse.cs" />
240
241
    <Compile Include="Filter Effects\feColourMatrix\SvgColourMatrix.cs" />
    <Compile Include="Filter Effects\feColourMatrix\SvgColourMatrixType.cs" />
242
    <Compile Include="Filter Effects\feGaussianBlur\RawBitmap.cs" />
243
244
    <Compile Include="Filter Effects\feMerge\SvgMergeNode.cs" />
    <Compile Include="Filter Effects\feOffset\SvgOffset.cs" />
davescriven's avatar
davescriven committed
245
246
247
    <Compile Include="Filter Effects\ISvgFilterable.cs" />
    <Compile Include="Filter Effects\SvgFilter.cs" />
    <Compile Include="Filter Effects\SvgFilterPrimitive.cs" />
248
249
    <Compile Include="Filter Effects\feGaussianBlur\SvgGaussianBlur.cs" />
    <Compile Include="Filter Effects\feMerge\SvgMerge.cs" />
Tebjan Halm's avatar
Tebjan Halm committed
250
    <Compile Include="Painting\EnumConverters.cs" />
251
    <Compile Include="SvgContentNode.cs" />
252
    <Compile Include="SvgDefinitionDefaults.cs" />
253
254
    <Compile Include="NonSvgElement.cs" />
    <Compile Include="SvgUnknownElement.cs" />
255
    <Compile Include="SvgElementAttribute.cs" />
Tebjan Halm's avatar
Tebjan Halm committed
256
    <Compile Include="SvgExtentions.cs" />
Eric Domke's avatar
Eric Domke committed
257
    <Compile Include="Rendering\SvgRenderer.cs" />
davescriven's avatar
davescriven committed
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
    <Compile Include="Painting\SvgColourConverter.cs" />
    <Compile Include="Painting\SvgGradientSpreadMethod.cs" />
    <Compile Include="SvgDtdResolver.cs" />
    <Compile Include="Exceptions\SvgException.cs" />
    <Compile Include="Painting\SvgFillRule.cs" />
    <Compile Include="Painting\SvgGradientServer.cs" />
    <Compile Include="Painting\SvgGradientStop.cs" />
    <Compile Include="Painting\ISvgStylable.cs" />
    <Compile Include="Painting\SvgColourServer.cs" />
    <Compile Include="Painting\SvgLinearGradientServer.cs" />
    <Compile Include="Painting\SvgPaintServer.cs" />
    <Compile Include="Painting\SvgPaintServerFactory.cs" />
    <Compile Include="Painting\SvgPatternServer.cs" />
    <Compile Include="Painting\SvgRadialGradientServer.cs" />
    <Compile Include="Painting\SvgStrokeLineCap.cs" />
    <Compile Include="Painting\SvgStrokeLineJoin.cs" />
274
    <Compile Include="Basic Shapes\SvgVisualElementStyle.cs" />
davescriven's avatar
davescriven committed
275
276
277
278
279
280
281
282
283
284
285
    <Compile Include="Paths\SvgArcSegment.cs" />
    <Compile Include="Paths\SvgClosePathSegment.cs" />
    <Compile Include="Paths\SvgCubicCurveSegment.cs" />
    <Compile Include="Paths\SvgLineSegment.cs" />
    <Compile Include="Paths\SvgMoveToSegment.cs" />
    <Compile Include="Paths\SvgPath.cs" />
    <Compile Include="Basic Shapes\SvgRectangle.cs" />
    <Compile Include="Paths\SvgPathSegment.cs" />
    <Compile Include="Paths\SvgPathSegmentList.cs" />
    <Compile Include="Paths\SvgQuadraticCurveSegment.cs" />
    <Compile Include="Properties\AssemblyInfo.cs" />
286
    <Compile Include="SvgDocument.cs" />
davescriven's avatar
davescriven committed
287
288
289
290
291
292
293
294
295
296
    <Compile Include="SvgAttributeAttribute.cs" />
    <Compile Include="SvgAttributeCollection.cs" />
    <Compile Include="SvgElement.cs" />
    <Compile Include="SvgElementCollection.cs" />
    <Compile Include="SvgElementFactory.cs" />
    <Compile Include="Paths\SvgPathBuilder.cs" />
    <Compile Include="DataTypes\SvgPoint.cs" />
    <Compile Include="SvgElementIdManager.cs" />
    <Compile Include="DataTypes\SvgUnit.cs" />
    <Compile Include="DataTypes\SvgUnitConverter.cs" />
297
    <Compile Include="SvgTextReader.cs" />
Eric Domke's avatar
Eric Domke committed
298
299
300
301
302
303
304
305
306
307
308
    <Compile Include="Text\SvgFontFaceUri.cs" />
    <Compile Include="Text\FontFamily.cs" />
    <Compile Include="Text\GdiFontDefn.cs" />
    <Compile Include="Text\IFontDefn.cs" />
    <Compile Include="Text\SvgFont.cs" />
    <Compile Include="Text\SvgFontDefn.cs" />
    <Compile Include="Text\SvgFontFace.cs" />
    <Compile Include="Text\SvgFontFaceSrc.cs" />
    <Compile Include="Text\SvgGlyph.cs" />
    <Compile Include="Text\SvgKern.cs" />
    <Compile Include="Text\SvgMissingGlyph.cs" />
davescriven's avatar
davescriven committed
309
    <Compile Include="Text\SvgText.cs" />
310
    <Compile Include="Text\SvgTextBase.cs" />
davescriven's avatar
davescriven committed
311
    <Compile Include="Text\SvgTextAnchor.cs" />
Eric Domke's avatar
Eric Domke committed
312
    <Compile Include="Text\SvgTextPath.cs" />
davescriven's avatar
davescriven committed
313
    <Compile Include="Text\SvgTextSpan.cs" />
Eric Domke's avatar
Eric Domke committed
314
315
    <Compile Include="Text\SvgTextRef.cs" />
    <Compile Include="Text\PathStatistics.cs" />
davescriven's avatar
davescriven committed
316
    <Compile Include="Transforms\ISvgTransformable.cs" />
317
    <Compile Include="Transforms\SvgMatrix.cs" />
davescriven's avatar
davescriven committed
318
319
    <Compile Include="Transforms\SvgRotate.cs" />
    <Compile Include="Transforms\SvgScale.cs" />
320
321
    <Compile Include="Transforms\SvgShear.cs" />
    <Compile Include="Transforms\SvgSkew.cs" />
davescriven's avatar
davescriven committed
322
323
324
325
326
327
328
    <Compile Include="Transforms\SvgTransform.cs" />
    <Compile Include="Transforms\SvgTransformCollection.cs" />
    <Compile Include="Transforms\SvgTransformConverter.cs" />
    <Compile Include="Transforms\SvgTranslate.cs" />
    <Compile Include="Web\SvgHandler.cs" />
  </ItemGroup>
  <ItemGroup>
329
330
331
332
333
    <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
      <Visible>False</Visible>
      <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
      <Install>false</Install>
    </BootstrapperPackage>
davescriven's avatar
davescriven committed
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
    <BootstrapperPackage Include="Microsoft.Net.Framework.2.0">
      <Visible>False</Visible>
      <ProductName>.NET Framework 2.0 %28x86%29</ProductName>
      <Install>true</Install>
    </BootstrapperPackage>
    <BootstrapperPackage Include="Microsoft.Net.Framework.3.0">
      <Visible>False</Visible>
      <ProductName>.NET Framework 3.0 %28x86%29</ProductName>
      <Install>false</Install>
    </BootstrapperPackage>
    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5">
      <Visible>False</Visible>
      <ProductName>.NET Framework 3.5</ProductName>
      <Install>false</Install>
    </BootstrapperPackage>
349
350
351
352
353
    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
      <Visible>False</Visible>
      <ProductName>.NET Framework 3.5 SP1</ProductName>
      <Install>false</Install>
    </BootstrapperPackage>
davescriven's avatar
davescriven committed
354
355
356
357
358
359
360
  </ItemGroup>
  <ItemGroup>
    <EmbeddedResource Include="Resources\svg11.dtd" />
  </ItemGroup>
  <ItemGroup>
    <Folder Include="Web\Resources\" />
  </ItemGroup>
Tebjan Halm's avatar
Tebjan Halm committed
361
362
  <ItemGroup>
    <None Include="Basic Shapes\DOM.cd" />
363
    <None Include="Svg.nuspec" />
tebjan's avatar
tebjan committed
364
    <None Include="svgkey.snk" />
Tebjan Halm's avatar
Tebjan Halm committed
365
  </ItemGroup>
davescriven's avatar
davescriven committed
366
367
368
369
370
371
372
373
374
375
376
377
  <Import Project="$(MSBuildBinPath)\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>
    </PostBuildEvent>
  </PropertyGroup>
Tebjan Halm's avatar
Tebjan Halm committed
378
379
380
381
382
383
384
385
386
387
388
389
  <PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
    <RegisterForComInterop>False</RegisterForComInterop>
    <GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
    <BaseAddress>4194304</BaseAddress>
    <PlatformTarget>AnyCPU</PlatformTarget>
    <FileAlignment>4096</FileAlignment>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
    <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
    <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
tebjan's avatar
tebjan committed
390
    <BaseIntermediateOutputPath>obj\</BaseIntermediateOutputPath>
Tebjan Halm's avatar
Tebjan Halm committed
391
  </PropertyGroup>
davescriven's avatar
davescriven committed
392
</Project>