Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorRuntime/SharpVectors.Runtime.csproj @ 12762

Last change on this file since 12762 was 12762, checked in by aballeit, 9 years ago

#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)

File size: 4.7 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <PropertyGroup>
4    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6    <ProductVersion>9.0.30729</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{2CD52982-A1C2-4A14-9D69-D64719357216}</ProjectGuid>
9    <OutputType>library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>SharpVectors.Runtime</RootNamespace>
12    <AssemblyName>SharpVectors.Runtime</AssemblyName>
13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
16    <WarningLevel>4</WarningLevel>
17    <SignAssembly>true</SignAssembly>
18    <AssemblyOriginatorKeyFile>SharpVectors.Runtime.snk</AssemblyOriginatorKeyFile>
19    <SccProjectName>SAK</SccProjectName>
20    <SccLocalPath>SAK</SccLocalPath>
21    <SccAuxPath>SAK</SccAuxPath>
22    <SccProvider>SAK</SccProvider>
23    <FileUpgradeFlags>
24    </FileUpgradeFlags>
25    <UpgradeBackupLocation>
26    </UpgradeBackupLocation>
27    <OldToolsVersion>3.5</OldToolsVersion>
28  </PropertyGroup>
29  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
30    <DebugSymbols>true</DebugSymbols>
31    <DebugType>full</DebugType>
32    <Optimize>false</Optimize>
33    <OutputPath>..\..\Output\</OutputPath>
34    <DefineConstants>DEBUG;TRACE</DefineConstants>
35    <ErrorReport>prompt</ErrorReport>
36    <WarningLevel>4</WarningLevel>
37  </PropertyGroup>
38  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
39    <DebugType>pdbonly</DebugType>
40    <Optimize>true</Optimize>
41    <OutputPath>..\..\Output\</OutputPath>
42    <DefineConstants>TRACE</DefineConstants>
43    <ErrorReport>prompt</ErrorReport>
44    <WarningLevel>4</WarningLevel>
45  </PropertyGroup>
46  <ItemGroup>
47    <Reference Include="System" />
48    <Reference Include="System.Core">
49      <RequiredTargetFramework>3.5</RequiredTargetFramework>
50    </Reference>
51    <Reference Include="System.Data" />
52    <Reference Include="System.Xml" />
53    <Reference Include="WindowsBase" />
54    <Reference Include="PresentationCore" />
55    <Reference Include="PresentationFramework" />
56  </ItemGroup>
57  <ItemGroup>
58    <Compile Include="EmbeddedBitmapData.cs" />
59    <Compile Include="EmbeddedBitmapDataConverter.cs" />
60    <Compile Include="EmbeddedBitmapSource.cs" />
61    <Compile Include="Properties\AssemblyInfo.cs">
62      <SubType>Code</SubType>
63    </Compile>
64    <Compile Include="Properties\Resources.Designer.cs">
65      <AutoGen>True</AutoGen>
66      <DesignTime>True</DesignTime>
67      <DependentUpon>Resources.resx</DependentUpon>
68    </Compile>
69    <Compile Include="Properties\Settings.Designer.cs">
70      <AutoGen>True</AutoGen>
71      <DependentUpon>Settings.settings</DependentUpon>
72      <DesignTimeSharedInput>True</DesignTimeSharedInput>
73    </Compile>
74    <Compile Include="SvgAnimationLayer.cs" />
75    <Compile Include="SvgAnimator.cs" />
76    <Compile Include="SvgDrawingCanvas.cs" />
77    <Compile Include="SvgObjectType.cs" />
78    <Compile Include="SvgFontUriExtension.cs" />
79    <Compile Include="SvgImage.cs" />
80    <Compile Include="SvgLink.cs" />
81    <Compile Include="SvgObject.cs" />
82    <Compile Include="Utils\Casting.cs" />
83    <Compile Include="ZoomPanAnimationHelper.cs" />
84    <Compile Include="ZoomPanControl.cs" />
85    <Compile Include="ZoomPanControl.IScrollInfo.cs" />
86    <EmbeddedResource Include="Properties\Resources.resx">
87      <Generator>ResXFileCodeGenerator</Generator>
88      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
89    </EmbeddedResource>
90    <None Include="Properties\Settings.settings">
91      <Generator>SettingsSingleFileGenerator</Generator>
92      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
93    </None>
94    <None Include="SharpVectors.Runtime.snk" />
95    <AppDesigner Include="Properties\" />
96  </ItemGroup>
97  <ItemGroup>
98    <Page Include="Themes\Generic.xaml">
99      <Generator>MSBuild:Compile</Generator>
100      <SubType>Designer</SubType>
101      <Generator>MSBuild:Compile</Generator>
102      <SubType>Designer</SubType>
103    </Page>
104  </ItemGroup>
105  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
106  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
107       Other similar extension points exist, see Microsoft.Common.targets.
108  <Target Name="BeforeBuild">
109  </Target>
110  <Target Name="AfterBuild">
111  </Target>
112  -->
113</Project>
Note: See TracBrowser for help on using the repository browser.