Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 10013 was 10013, checked in by spimming, 10 years ago

#1888:

  • enabled transactions
  • enabled tracing output
  • set correct invoice data
  • saving invoices
File size: 4.3 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="Microsoft.WindowsAzure.StorageClient, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" />
38    <Reference Include="System" />
39    <Reference Include="System.ComponentModel.DataAnnotations" />
40    <Reference Include="System.Configuration" />
41    <Reference Include="System.Core" />
42    <Reference Include="System.Data.Entity" />
43    <Reference Include="System.Drawing" />
44    <Reference Include="System.ServiceModel" />
45    <Reference Include="System.Transactions" />
46    <Reference Include="System.Windows.Forms" />
47    <Reference Include="System.Xml.Linq" />
48    <Reference Include="System.Data.DataSetExtensions" />
49    <Reference Include="Microsoft.CSharp" />
50    <Reference Include="System.Data" />
51    <Reference Include="System.Xml" />
52  </ItemGroup>
53  <ItemGroup>
54    <Compile Include="BillingEngine\AzureInvoiceDao.cs" />
55    <Compile Include="BillingEngine\BillingEngine.cs" />
56    <Compile Include="BillingEngine\FileSystemInvoiceDao.cs" />
57    <Compile Include="BillingEngine\PlainTextInvoiceFormattingEngine.cs" />
58    <Compile Include="Business\BillingService.cs" />
59    <Compile Include="Business\BillingServiceProvider.cs" />
60    <Compile Include="Business\TransactionManager.cs" />
61    <Compile Include="DataAccess\BillingContext.cs" />
62    <Compile Include="DataAccess\BillingDao.cs" />
63    <Compile Include="Interfaces\IEntity.cs" />
64    <Compile Include="Interfaces\IGenericDao.cs" />
65    <Compile Include="Interfaces\IInvoiceDao.cs" />
66    <Compile Include="Interfaces\IInvoiceFormattingEngine.cs" />
67    <Compile Include="Interfaces\IObjectWithState.cs" />
68    <Compile Include="Interfaces\IOptimizationBilling.cs" />
69    <Compile Include="Business\MockupBillingService.cs" />
70    <Compile Include="Interfaces\ITransactionManager.cs" />
71    <Compile Include="Model\Model.cs" />
72    <Compile Include="Properties\AssemblyInfo.cs" />
73    <Compile Include="Utils\DbContextUtil.cs" />
74    <Compile Include="Utils\StateUtil.cs" />
75  </ItemGroup>
76  <ItemGroup>
77    <None Include="App.config" />
78    <None Include="packages.config" />
79  </ItemGroup>
80  <ItemGroup>
81    <Content Include="BillingEngine\InvoiceTemplate.txt">
82      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
83    </Content>
84  </ItemGroup>
85  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
86  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
87       Other similar extension points exist, see Microsoft.Common.targets.
88  <Target Name="BeforeBuild">
89  </Target>
90  <Target Name="AfterBuild">
91  </Target>
92  -->
93</Project>
Note: See TracBrowser for help on using the repository browser.