[9550] | 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>
|
---|
[9576] | 34 | <Reference Include="EntityFramework">
|
---|
| 35 | <HintPath>..\packages\EntityFramework.5.0.0\lib\net40\EntityFramework.dll</HintPath>
|
---|
| 36 | </Reference>
|
---|
[10013] | 37 | <Reference Include="Microsoft.WindowsAzure.StorageClient, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" />
|
---|
[9550] | 38 | <Reference Include="System" />
|
---|
[9576] | 39 | <Reference Include="System.ComponentModel.DataAnnotations" />
|
---|
[9602] | 40 | <Reference Include="System.Configuration" />
|
---|
[9550] | 41 | <Reference Include="System.Core" />
|
---|
[9576] | 42 | <Reference Include="System.Data.Entity" />
|
---|
[9619] | 43 | <Reference Include="System.Drawing" />
|
---|
[9550] | 44 | <Reference Include="System.ServiceModel" />
|
---|
[10013] | 45 | <Reference Include="System.Transactions" />
|
---|
[9619] | 46 | <Reference Include="System.Windows.Forms" />
|
---|
[9550] | 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>
|
---|
[10013] | 54 | <Compile Include="BillingEngine\AzureInvoiceDao.cs" />
|
---|
[9619] | 55 | <Compile Include="BillingEngine\BillingEngine.cs" />
|
---|
[10013] | 56 | <Compile Include="BillingEngine\FileSystemInvoiceDao.cs" />
|
---|
[9619] | 57 | <Compile Include="BillingEngine\PlainTextInvoiceFormattingEngine.cs" />
|
---|
[9576] | 58 | <Compile Include="Business\BillingService.cs" />
|
---|
| 59 | <Compile Include="Business\BillingServiceProvider.cs" />
|
---|
[10013] | 60 | <Compile Include="Business\TransactionManager.cs" />
|
---|
[9576] | 61 | <Compile Include="DataAccess\BillingContext.cs" />
|
---|
| 62 | <Compile Include="DataAccess\BillingDao.cs" />
|
---|
| 63 | <Compile Include="Interfaces\IEntity.cs" />
|
---|
| 64 | <Compile Include="Interfaces\IGenericDao.cs" />
|
---|
[10013] | 65 | <Compile Include="Interfaces\IInvoiceDao.cs" />
|
---|
[9619] | 66 | <Compile Include="Interfaces\IInvoiceFormattingEngine.cs" />
|
---|
[9645] | 67 | <Compile Include="Interfaces\IObjectWithState.cs" />
|
---|
[9550] | 68 | <Compile Include="Interfaces\IOptimizationBilling.cs" />
|
---|
[9576] | 69 | <Compile Include="Business\MockupBillingService.cs" />
|
---|
[10013] | 70 | <Compile Include="Interfaces\ITransactionManager.cs" />
|
---|
[9550] | 71 | <Compile Include="Model\Model.cs" />
|
---|
| 72 | <Compile Include="Properties\AssemblyInfo.cs" />
|
---|
[9645] | 73 | <Compile Include="Utils\DbContextUtil.cs" />
|
---|
| 74 | <Compile Include="Utils\StateUtil.cs" />
|
---|
[9550] | 75 | </ItemGroup>
|
---|
[9576] | 76 | <ItemGroup>
|
---|
| 77 | <None Include="App.config" />
|
---|
| 78 | <None Include="packages.config" />
|
---|
| 79 | </ItemGroup>
|
---|
[9619] | 80 | <ItemGroup>
|
---|
| 81 | <Content Include="BillingEngine\InvoiceTemplate.txt">
|
---|
| 82 | <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
---|
| 83 | </Content>
|
---|
| 84 | </ItemGroup>
|
---|
[9550] | 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> |
---|