Lottomat.CodeGenerator.csproj 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{6FAADC1C-DB04-4F65-9856-D989FC3B46C5}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Lottomat.CodeGenerator</RootNamespace>
  11. <AssemblyName>Lottomat.CodeGenerator</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <TargetFrameworkProfile />
  15. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
  16. <RestorePackages>true</RestorePackages>
  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. <Prefer32Bit>false</Prefer32Bit>
  27. </PropertyGroup>
  28. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  29. <DebugType>pdbonly</DebugType>
  30. <Optimize>true</Optimize>
  31. <OutputPath>bin\Release\</OutputPath>
  32. <DefineConstants>TRACE</DefineConstants>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. <Prefer32Bit>false</Prefer32Bit>
  36. </PropertyGroup>
  37. <ItemGroup>
  38. <Reference Include="Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  39. <HintPath>..\packages\Newtonsoft.Json.10.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
  40. <Private>True</Private>
  41. </Reference>
  42. <Reference Include="System" />
  43. <Reference Include="System.Core" />
  44. <Reference Include="System.Net.Http" />
  45. <Reference Include="System.Net.Http.Formatting, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  46. <HintPath>..\packages\Microsoft.AspNet.WebApi.Client.5.2.3\lib\net45\System.Net.Http.Formatting.dll</HintPath>
  47. <Private>True</Private>
  48. </Reference>
  49. <Reference Include="System.Web.Http, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  50. <HintPath>..\packages\Microsoft.AspNet.WebApi.Core.5.2.3\lib\net45\System.Web.Http.dll</HintPath>
  51. <Private>True</Private>
  52. </Reference>
  53. <Reference Include="System.Web.Http.WebHost, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  54. <HintPath>..\packages\Microsoft.AspNet.WebApi.WebHost.5.2.3\lib\net45\System.Web.Http.WebHost.dll</HintPath>
  55. <Private>True</Private>
  56. </Reference>
  57. <Reference Include="System.Xml.Linq" />
  58. <Reference Include="System.Data.DataSetExtensions" />
  59. <Reference Include="Microsoft.CSharp" />
  60. <Reference Include="System.Data" />
  61. <Reference Include="System.Xml" />
  62. </ItemGroup>
  63. <ItemGroup>
  64. <Compile Include="Comm\CommHelper.cs" />
  65. <Compile Include="CreateCodeFile.cs" />
  66. <Compile Include="Model\BaseConfigModel.cs" />
  67. <Compile Include="Model\FormFieldModel.cs" />
  68. <Compile Include="Model\FormModel.cs" />
  69. <Compile Include="Model\GridColumnModel.cs" />
  70. <Compile Include="Model\GridModel.cs" />
  71. <Compile Include="Model\MultiTableConfigModel.cs" />
  72. <Compile Include="Properties\AssemblyInfo.cs" />
  73. <Compile Include="Template\MultiTable.cs" />
  74. <Compile Include="Template\SingleTable.cs" />
  75. </ItemGroup>
  76. <ItemGroup>
  77. <ProjectReference Include="..\Lottomat.Util\Lottomat.Util.Extension\Lottomat.Util.Extension.csproj">
  78. <Project>{4b7dde80-dfa1-4938-93f8-3721e2c592b9}</Project>
  79. <Name>Lottomat.Util.Extension</Name>
  80. </ProjectReference>
  81. <ProjectReference Include="..\Lottomat.Util\Lottomat.Util\Lottomat.Utils.csproj">
  82. <Project>{07aa2566-d0e5-47af-a17d-3b1c6aee598d}</Project>
  83. <Name>Lottomat.Utils</Name>
  84. </ProjectReference>
  85. </ItemGroup>
  86. <ItemGroup>
  87. <None Include="app.config" />
  88. <None Include="packages.config" />
  89. </ItemGroup>
  90. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  91. <Import Project="$(SolutionDir)\.nuget\nuget.targets" />
  92. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  93. Other similar extension points exist, see Microsoft.Common.targets.
  94. <Target Name="BeforeBuild">
  95. </Target>
  96. <Target Name="AfterBuild">
  97. </Target>
  98. -->
  99. </Project>