Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.ExternalEvaluation Scientific/DotNetScilab/dotnetsci/DotNetScilab.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.9 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>{C3F0C7DC-82AD-405B-990A-BF2C5B7F46FF}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>DotNetScilab</RootNamespace>
12    <AssemblyName>DotNet-Component-Scilab</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    <RegisterForComInterop>false</RegisterForComInterop>
32  </PropertyGroup>
33  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
34    <DebugType>pdbonly</DebugType>
35    <Optimize>true</Optimize>
36    <OutputPath>..\..\bin\</OutputPath>
37    <DefineConstants>TRACE</DefineConstants>
38    <ErrorReport>prompt</ErrorReport>
39    <WarningLevel>4</WarningLevel>
40    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
41    <RegisterForComInterop>false</RegisterForComInterop>
42  </PropertyGroup>
43  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
44    <DebugSymbols>true</DebugSymbols>
45    <OutputPath>..\..\bin\</OutputPath>
46    <DefineConstants>DEBUG;TRACE</DefineConstants>
47    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
48    <RegisterForComInterop>false</RegisterForComInterop>
49    <DebugType>full</DebugType>
50    <PlatformTarget>x64</PlatformTarget>
51    <ErrorReport>prompt</ErrorReport>
52  </PropertyGroup>
53  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
54    <OutputPath>..\..\bin\</OutputPath>
55    <DefineConstants>DEBUG;TRACE</DefineConstants>
56    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
57    <Optimize>true</Optimize>
58    <RegisterForComInterop>false</RegisterForComInterop>
59    <DebugType>pdbonly</DebugType>
60    <PlatformTarget>x64</PlatformTarget>
61    <ErrorReport>prompt</ErrorReport>
62  </PropertyGroup>
63  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
64    <DebugSymbols>true</DebugSymbols>
65    <OutputPath>..\..\bin\</OutputPath>
66    <DefineConstants>DEBUG;TRACE</DefineConstants>
67    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
68    <RegisterForComInterop>false</RegisterForComInterop>
69    <DebugType>full</DebugType>
70    <PlatformTarget>x86</PlatformTarget>
71    <ErrorReport>prompt</ErrorReport>
72  </PropertyGroup>
73  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
74    <OutputPath>..\..\bin\</OutputPath>
75    <DefineConstants>TRACE</DefineConstants>
76    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
77    <Optimize>true</Optimize>
78    <RegisterForComInterop>false</RegisterForComInterop>
79    <DebugType>pdbonly</DebugType>
80    <PlatformTarget>x86</PlatformTarget>
81    <ErrorReport>prompt</ErrorReport>
82  </PropertyGroup>
83  <PropertyGroup>
84    <SignAssembly>true</SignAssembly>
85  </PropertyGroup>
86  <PropertyGroup>
87    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
88  </PropertyGroup>
89  <ItemGroup>
90    <Reference Include="System" />
91    <Reference Include="System.Core">
92      <RequiredTargetFramework>3.5</RequiredTargetFramework>
93    </Reference>
94    <Reference Include="System.Xml.Linq">
95      <RequiredTargetFramework>3.5</RequiredTargetFramework>
96    </Reference>
97    <Reference Include="System.Data.DataSetExtensions">
98      <RequiredTargetFramework>3.5</RequiredTargetFramework>
99    </Reference>
100    <Reference Include="System.Data" />
101    <Reference Include="System.Xml" />
102  </ItemGroup>
103  <ItemGroup>
104    <Compile Include="Scilab.cs" />
105    <Compile Include="Properties\AssemblyInfo.cs" />
106    <Compile Include="Scilab_cs_wrapper.cs" />
107  </ItemGroup>
108  <ItemGroup>
109    <None Include="HeuristicLab.snk" />
110  </ItemGroup>
111  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
112  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
113       Other similar extension points exist, see Microsoft.Common.targets.
114  <Target Name="BeforeBuild">
115  </Target>
116  <Target Name="AfterBuild">
117  </Target>
118  -->
119</Project>
Note: See TracBrowser for help on using the repository browser.