Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.ExternalEvaluation Scientific/DotNetScilab/cs_example/cs_example.csproj @ 10122

Last change on this file since 10122 was 10122, checked in by mkommend, 10 years ago

#2082: Added Scilab .NET coupling to external evaluation branch.

File size: 4.5 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)' == '' ">AnyCPU</Platform>
6    <ProductVersion>9.0.30729</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{10B5A5BF-3204-4B47-91C0-7FA614EFA94A}</ProjectGuid>
9    <OutputType>Exe</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>cs_example</RootNamespace>
12    <AssemblyName>cs_example</AssemblyName>
13    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <FileUpgradeFlags>
16    </FileUpgradeFlags>
17    <UpgradeBackupLocation>
18    </UpgradeBackupLocation>
19    <OldToolsVersion>3.5</OldToolsVersion>
20    <TargetFrameworkProfile />
21  </PropertyGroup>
22  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
23    <DebugSymbols>true</DebugSymbols>
24    <DebugType>full</DebugType>
25    <Optimize>false</Optimize>
26    <OutputPath>..\..\bin\</OutputPath>
27    <DefineConstants>DEBUG;TRACE</DefineConstants>
28    <ErrorReport>prompt</ErrorReport>
29    <WarningLevel>4</WarningLevel>
30    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
31  </PropertyGroup>
32  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
33    <DebugType>pdbonly</DebugType>
34    <Optimize>true</Optimize>
35    <OutputPath>..\..\bin\</OutputPath>
36    <DefineConstants>TRACE</DefineConstants>
37    <ErrorReport>prompt</ErrorReport>
38    <WarningLevel>4</WarningLevel>
39    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
40  </PropertyGroup>
41  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
42    <DebugSymbols>true</DebugSymbols>
43    <OutputPath>..\..\bin\</OutputPath>
44    <DefineConstants>DEBUG;TRACE</DefineConstants>
45    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
46    <DebugType>full</DebugType>
47    <PlatformTarget>x64</PlatformTarget>
48    <ErrorReport>prompt</ErrorReport>
49  </PropertyGroup>
50  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
51    <OutputPath>..\..\bin\</OutputPath>
52    <DefineConstants>TRACE</DefineConstants>
53    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
54    <Optimize>true</Optimize>
55    <DebugType>pdbonly</DebugType>
56    <PlatformTarget>x64</PlatformTarget>
57    <ErrorReport>prompt</ErrorReport>
58  </PropertyGroup>
59  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
60    <DebugSymbols>true</DebugSymbols>
61    <OutputPath>..\..\bin\</OutputPath>
62    <DefineConstants>DEBUG;TRACE</DefineConstants>
63    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
64    <DebugType>full</DebugType>
65    <PlatformTarget>x86</PlatformTarget>
66    <ErrorReport>prompt</ErrorReport>
67  </PropertyGroup>
68  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
69    <OutputPath>..\..\bin\</OutputPath>
70    <DefineConstants>TRACE</DefineConstants>
71    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
72    <Optimize>true</Optimize>
73    <DebugType>pdbonly</DebugType>
74    <PlatformTarget>x86</PlatformTarget>
75    <ErrorReport>prompt</ErrorReport>
76  </PropertyGroup>
77  <ItemGroup>
78    <Reference Include="System" />
79    <Reference Include="System.Core">
80      <RequiredTargetFramework>3.5</RequiredTargetFramework>
81    </Reference>
82    <Reference Include="System.Xml.Linq">
83      <RequiredTargetFramework>3.5</RequiredTargetFramework>
84    </Reference>
85    <Reference Include="System.Data.DataSetExtensions">
86      <RequiredTargetFramework>3.5</RequiredTargetFramework>
87    </Reference>
88    <Reference Include="System.Data" />
89    <Reference Include="System.Xml" />
90  </ItemGroup>
91  <ItemGroup>
92    <Compile Include="cs_example.cs" />
93    <Compile Include="Properties\AssemblyInfo.cs" />
94    <Compile Include="Util.cs" />
95  </ItemGroup>
96  <ItemGroup>
97    <ProjectReference Include="..\dotnetsci\DotNetScilab.csproj">
98      <Project>{c3f0c7dc-82ad-405b-990a-bf2c5b7f46ff}</Project>
99      <Name>DotNetScilab</Name>
100    </ProjectReference>
101  </ItemGroup>
102  <ItemGroup>
103    <None Include="app.config" />
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.