Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OaaS/HeuristicLab.Services.Optimization.Billing/HeuristicLab.Services.Optimization.Billing.csproj @ 9602

Last change on this file since 9602 was 9602, checked in by spimming, 11 years ago

#1888:

  • Workaround for enums in model classes
  • Implemented dao methods for model
  • Added test data in db seed method
  • changed EF configuration
  • Implemented some BL methods
File size: 3.2 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>8.0.30703</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{5DC3E4F1-E21B-4C18-8921-88058E86FB07}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Services.Optimization.Billing</RootNamespace>
12    <AssemblyName>HeuristicLab.Services.Optimization.Billing</AssemblyName>
13    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15  </PropertyGroup>
16  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17    <DebugSymbols>true</DebugSymbols>
18    <DebugType>full</DebugType>
19    <Optimize>false</Optimize>
20    <OutputPath>bin\Debug\</OutputPath>
21    <DefineConstants>DEBUG;TRACE</DefineConstants>
22    <ErrorReport>prompt</ErrorReport>
23    <WarningLevel>4</WarningLevel>
24  </PropertyGroup>
25  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26    <DebugType>pdbonly</DebugType>
27    <Optimize>true</Optimize>
28    <OutputPath>bin\Release\</OutputPath>
29    <DefineConstants>TRACE</DefineConstants>
30    <ErrorReport>prompt</ErrorReport>
31    <WarningLevel>4</WarningLevel>
32  </PropertyGroup>
33  <ItemGroup>
34    <Reference Include="EntityFramework">
35      <HintPath>..\packages\EntityFramework.5.0.0\lib\net40\EntityFramework.dll</HintPath>
36    </Reference>
37    <Reference Include="System" />
38    <Reference Include="System.ComponentModel.DataAnnotations" />
39    <Reference Include="System.Configuration" />
40    <Reference Include="System.Core" />
41    <Reference Include="System.Data.Entity" />
42    <Reference Include="System.ServiceModel" />
43    <Reference Include="System.Xml.Linq" />
44    <Reference Include="System.Data.DataSetExtensions" />
45    <Reference Include="Microsoft.CSharp" />
46    <Reference Include="System.Data" />
47    <Reference Include="System.Xml" />
48  </ItemGroup>
49  <ItemGroup>
50    <Compile Include="Business\BillingService.cs" />
51    <Compile Include="Business\BillingServiceProvider.cs" />
52    <Compile Include="DataAccess\BillingContext.cs" />
53    <Compile Include="DataAccess\BillingDao.cs" />
54    <Compile Include="Interfaces\IEntity.cs" />
55    <Compile Include="Interfaces\IGenericDao.cs" />
56    <Compile Include="Interfaces\IOptimizationBilling.cs" />
57    <Compile Include="Business\MockupBillingService.cs" />
58    <Compile Include="Model\Model.cs" />
59    <Compile Include="Properties\AssemblyInfo.cs" />
60  </ItemGroup>
61  <ItemGroup>
62    <None Include="App.config" />
63    <None Include="packages.config" />
64  </ItemGroup>
65  <ItemGroup />
66  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
67  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
68       Other similar extension points exist, see Microsoft.Common.targets.
69  <Target Name="BeforeBuild">
70  </Target>
71  <Target Name="AfterBuild">
72  </Target>
73  -->
74</Project>
Note: See TracBrowser for help on using the repository browser.