Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataAnalysis/Main/Main.csproj @ 11528

Last change on this file since 11528 was 5305, checked in by gkronber, 13 years ago

worked on data analysis feature exploration branch. #1142

File size: 4.8 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <PropertyGroup>
4    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5    <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
6    <ProductVersion>8.0.30703</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{8892BD96-1AC6-489E-8848-6BDFE051F09C}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>Main</RootNamespace>
12    <AssemblyName>Main</AssemblyName>
13    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14    <TargetFrameworkProfile>
15    </TargetFrameworkProfile>
16    <FileAlignment>512</FileAlignment>
17  </PropertyGroup>
18  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
19    <PlatformTarget>x86</PlatformTarget>
20    <DebugSymbols>true</DebugSymbols>
21    <DebugType>full</DebugType>
22    <Optimize>false</Optimize>
23    <OutputPath>bin\Debug\</OutputPath>
24    <DefineConstants>DEBUG;TRACE</DefineConstants>
25    <ErrorReport>prompt</ErrorReport>
26    <WarningLevel>4</WarningLevel>
27  </PropertyGroup>
28  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
29    <PlatformTarget>x86</PlatformTarget>
30    <DebugType>pdbonly</DebugType>
31    <Optimize>true</Optimize>
32    <OutputPath>bin\Release\</OutputPath>
33    <DefineConstants>TRACE</DefineConstants>
34    <ErrorReport>prompt</ErrorReport>
35    <WarningLevel>4</WarningLevel>
36  </PropertyGroup>
37  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
38    <DebugSymbols>true</DebugSymbols>
39    <OutputPath>bin\Debug\</OutputPath>
40    <DefineConstants>DEBUG;TRACE</DefineConstants>
41    <DebugType>full</DebugType>
42    <PlatformTarget>AnyCPU</PlatformTarget>
43    <CodeAnalysisLogFile>bin\Debug\Main.exe.CodeAnalysisLog.xml</CodeAnalysisLogFile>
44    <CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
45    <CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
46    <ErrorReport>prompt</ErrorReport>
47    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
48    <CodeAnalysisRuleSetDirectories>;C:\Program Files\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets</CodeAnalysisRuleSetDirectories>
49    <CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
50    <CodeAnalysisRuleDirectories>;C:\Program Files\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
51    <CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
52  </PropertyGroup>
53  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
54    <OutputPath>bin\Release\</OutputPath>
55    <DefineConstants>TRACE</DefineConstants>
56    <Optimize>true</Optimize>
57    <DebugType>pdbonly</DebugType>
58    <PlatformTarget>AnyCPU</PlatformTarget>
59    <CodeAnalysisLogFile>bin\Release\Main.exe.CodeAnalysisLog.xml</CodeAnalysisLogFile>
60    <CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
61    <CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
62    <ErrorReport>prompt</ErrorReport>
63    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
64    <CodeAnalysisRuleSetDirectories>;C:\Program Files\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets</CodeAnalysisRuleSetDirectories>
65    <CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
66    <CodeAnalysisRuleDirectories>;C:\Program Files\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
67    <CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
68  </PropertyGroup>
69  <PropertyGroup>
70    <StartupObject />
71  </PropertyGroup>
72  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
73  <PropertyGroup>
74    <PostBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
75set ProjectDir=$(ProjectDir)
76set SolutionDir=$(SolutionDir)
77set Outdir=$(Outdir)
78set Platform=$(PlatformName)
79set Configuration=$(ConfigurationName)
80
81call CopyAssemblies.cmd
82call UpdateLocalInstallation.cmd</PostBuildEvent>
83  </PropertyGroup>
84  <ItemGroup>
85    <None Include="app.config" />
86    <None Include="CopyAssemblies.cmd" />
87    <None Include="UpdateLocalInstallation.cmd" />
88  </ItemGroup>
89  <ItemGroup>
90    <Content Include="Files.txt" />
91  </ItemGroup>
92  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
93       Other similar extension points exist, see Microsoft.Common.targets.
94  <Target Name="BeforeBuild">
95  </Target>
96  <Target Name="AfterBuild">
97  </Target>
98  -->
99</Project>
Note: See TracBrowser for help on using the repository browser.