Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Security.Contracts/HeuristicLab.Security.Contracts.csproj @ 1384

Last change on this file since 1384 was 1384, checked in by svonolfe, 15 years ago

Updated interfaces (#532)

File size: 3.6 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="3.5" 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>{D59E852C-F205-4647-8C05-EB9ED1CF44E9}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Security.Contracts</RootNamespace>
12    <AssemblyName>HeuristicLab.Security.Contracts-3.2</AssemblyName>
13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <StartupObject>
16    </StartupObject>
17  </PropertyGroup>
18  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
19    <DebugSymbols>true</DebugSymbols>
20    <DebugType>full</DebugType>
21    <Optimize>false</Optimize>
22    <OutputPath>bin\Debug\</OutputPath>
23    <DefineConstants>DEBUG;TRACE</DefineConstants>
24    <ErrorReport>prompt</ErrorReport>
25    <WarningLevel>4</WarningLevel>
26  </PropertyGroup>
27  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28    <DebugType>pdbonly</DebugType>
29    <Optimize>true</Optimize>
30    <OutputPath>bin\Release\</OutputPath>
31    <DefineConstants>TRACE</DefineConstants>
32    <ErrorReport>prompt</ErrorReport>
33    <WarningLevel>4</WarningLevel>
34  </PropertyGroup>
35  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
36  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
37       Other similar extension points exist, see Microsoft.Common.targets.
38  <Target Name="BeforeBuild">
39  </Target>
40  <Target Name="AfterBuild">
41  </Target>
42  -->
43  <ItemGroup>
44    <Compile Include="BusinessObjects\GrantedPermission.cs" />
45    <Compile Include="BusinessObjects\Permission.cs" />
46    <Compile Include="BusinessObjects\PermissionOwner.cs" />
47    <Compile Include="BusinessObjects\User.cs" />
48    <Compile Include="BusinessObjects\UserGroup.cs" />
49    <Compile Include="BusinessObjects\PersistableObject.cs" />
50    <Compile Include="SecurityContractsPlugin.cs" />
51    <Compile Include="Interfaces\IPermissionManager.cs" />
52    <Compile Include="Interfaces\ISecurityManager.cs" />
53  </ItemGroup>
54  <ItemGroup>
55    <Reference Include="System" />
56    <Reference Include="System.Data" />
57    <Reference Include="System.Runtime.Serialization">
58      <RequiredTargetFramework>3.0</RequiredTargetFramework>
59    </Reference>
60    <Reference Include="System.Xml" />
61  </ItemGroup>
62  <ItemGroup>
63    <ProjectReference Include="..\HeuristicLab.DataAccess\HeuristicLab.DataAccess.csproj">
64      <Project>{9076697B-C151-46CD-95BC-1D059492B478}</Project>
65      <Name>HeuristicLab.DataAccess</Name>
66    </ProjectReference>
67    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
68      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
69      <Name>HeuristicLab.PluginInfrastructure</Name>
70    </ProjectReference>
71  </ItemGroup>
72  <PropertyGroup>
73    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
74set ProjectDir=$(ProjectDir)
75set SolutionDir=$(SolutionDir)
76set Outdir=$(Outdir)
77
78call PreBuildEvent.cmd</PreBuildEvent>
79  </PropertyGroup>
80  <ItemGroup>
81    <None Include="HeuristicLab.snk" />
82    <None Include="Properties\AssemblyInfo.frame" />
83  </ItemGroup>
84</Project>
Note: See TracBrowser for help on using the repository browser.