Free cookie consent management tool by TermsFeed Policy Generator

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

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

#1888:

  • Model classes implement new interface to track current state of entity
  • Mark EntityState property as 'not mapped'
  • Set hook to initialize entity as unchanged
  • Extension method for DbContext to apply changes only on modified entity
File size: 3.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)' == '' ">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.Drawing" />
43    <Reference Include="System.ServiceModel" />
44    <Reference Include="System.Windows.Forms" />
45    <Reference Include="System.Xml.Linq" />
46    <Reference Include="System.Data.DataSetExtensions" />
47    <Reference Include="Microsoft.CSharp" />
48    <Reference Include="System.Data" />
49    <Reference Include="System.Xml" />
50  </ItemGroup>
51  <ItemGroup>
52    <Compile Include="BillingEngine\BillingEngine.cs" />
53    <Compile Include="BillingEngine\PlainTextInvoiceFormattingEngine.cs" />
54    <Compile Include="Business\BillingService.cs" />
55    <Compile Include="Business\BillingServiceProvider.cs" />
56    <Compile Include="DataAccess\BillingContext.cs" />
57    <Compile Include="DataAccess\BillingDao.cs" />
58    <Compile Include="Interfaces\IEntity.cs" />
59    <Compile Include="Interfaces\IGenericDao.cs" />
60    <Compile Include="Interfaces\IInvoiceFormattingEngine.cs" />
61    <Compile Include="Interfaces\IObjectWithState.cs" />
62    <Compile Include="Interfaces\IOptimizationBilling.cs" />
63    <Compile Include="Business\MockupBillingService.cs" />
64    <Compile Include="Model\Model.cs" />
65    <Compile Include="Properties\AssemblyInfo.cs" />
66    <Compile Include="Utils\DbContextUtil.cs" />
67    <Compile Include="Utils\StateUtil.cs" />
68  </ItemGroup>
69  <ItemGroup>
70    <None Include="App.config" />
71    <None Include="packages.config" />
72  </ItemGroup>
73  <ItemGroup>
74    <Content Include="BillingEngine\InvoiceTemplate.txt">
75      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
76    </Content>
77  </ItemGroup>
78  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
79  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
80       Other similar extension points exist, see Microsoft.Common.targets.
81  <Target Name="BeforeBuild">
82  </Target>
83  <Target Name="AfterBuild">
84  </Target>
85  -->
86</Project>
Note: See TracBrowser for help on using the repository browser.