NTERA.Compiler.csproj 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="..\packages\Costura.Fody.3.1.6\build\Costura.Fody.props" Condition="Exists('..\packages\Costura.Fody.3.1.6\build\Costura.Fody.props')" />
  4. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  5. <PropertyGroup>
  6. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  7. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  8. <ProjectGuid>{3E7BF6CC-3227-4C84-8D85-7ADA597288C1}</ProjectGuid>
  9. <OutputType>Exe</OutputType>
  10. <RootNamespace>NTERA.Compiler</RootNamespace>
  11. <AssemblyName>NTERA.Compiler</AssemblyName>
  12. <TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  15. <Deterministic>true</Deterministic>
  16. <NuGetPackageImportStamp>
  17. </NuGetPackageImportStamp>
  18. </PropertyGroup>
  19. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  20. <PlatformTarget>AnyCPU</PlatformTarget>
  21. <DebugSymbols>true</DebugSymbols>
  22. <DebugType>full</DebugType>
  23. <Optimize>false</Optimize>
  24. <OutputPath>bin\Debug\</OutputPath>
  25. <DefineConstants>DEBUG;TRACE</DefineConstants>
  26. <ErrorReport>prompt</ErrorReport>
  27. <WarningLevel>4</WarningLevel>
  28. </PropertyGroup>
  29. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  30. <PlatformTarget>AnyCPU</PlatformTarget>
  31. <DebugType>pdbonly</DebugType>
  32. <Optimize>true</Optimize>
  33. <OutputPath>bin\Release\</OutputPath>
  34. <DefineConstants>TRACE</DefineConstants>
  35. <ErrorReport>prompt</ErrorReport>
  36. <WarningLevel>4</WarningLevel>
  37. </PropertyGroup>
  38. <ItemGroup>
  39. <Reference Include="Costura, Version=3.1.6.0, Culture=neutral, PublicKeyToken=9919ef960d84173d, processorArchitecture=MSIL">
  40. <HintPath>..\packages\Costura.Fody.3.1.6\lib\net46\Costura.dll</HintPath>
  41. <Private>True</Private>
  42. </Reference>
  43. <Reference Include="System" />
  44. <Reference Include="System.Core" />
  45. </ItemGroup>
  46. <ItemGroup>
  47. <Compile Include="Compiler.cs" />
  48. <Compile Include="HTMLWriter.cs" />
  49. <Compile Include="Program.cs" />
  50. <Compile Include="Properties\AssemblyInfo.cs" />
  51. </ItemGroup>
  52. <ItemGroup>
  53. <None Include="App.config" />
  54. <None Include="packages.config" />
  55. </ItemGroup>
  56. <ItemGroup>
  57. <ProjectReference Include="..\NTERA.Interpreter\NTERA.Interpreter.csproj">
  58. <Project>{f3b58ef3-e3ff-4b76-92b8-2ab87663fc4d}</Project>
  59. <Name>NTERA.Interpreter</Name>
  60. </ProjectReference>
  61. </ItemGroup>
  62. <ItemGroup>
  63. <Content Include="FodyWeavers.xml">
  64. <SubType>Designer</SubType>
  65. </Content>
  66. </ItemGroup>
  67. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  68. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  69. <PropertyGroup>
  70. <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
  71. </PropertyGroup>
  72. <Error Condition="!Exists('..\packages\Costura.Fody.3.1.6\build\Costura.Fody.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Costura.Fody.3.1.6\build\Costura.Fody.props'))" />
  73. <Error Condition="!Exists('..\packages\Fody.3.2.16\build\Fody.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Fody.3.2.16\build\Fody.targets'))" />
  74. </Target>
  75. <Import Project="..\packages\Fody.3.2.16\build\Fody.targets" Condition="Exists('..\packages\Fody.3.2.16\build\Fody.targets')" />
  76. </Project>