NTERA.Compiler.csproj 4.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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.Core\NTERA.Core.csproj">
  58. <Project>{62a2b84e-9207-46b0-8a8d-28b5931fcb6e}</Project>
  59. <Name>NTERA.Core</Name>
  60. </ProjectReference>
  61. <ProjectReference Include="..\NTERA.Interpreter\NTERA.Interpreter.csproj">
  62. <Project>{f3b58ef3-e3ff-4b76-92b8-2ab87663fc4d}</Project>
  63. <Name>NTERA.Interpreter</Name>
  64. </ProjectReference>
  65. </ItemGroup>
  66. <ItemGroup>
  67. <Content Include="FodyWeavers.xml">
  68. <SubType>Designer</SubType>
  69. </Content>
  70. </ItemGroup>
  71. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  72. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  73. <PropertyGroup>
  74. <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>
  75. </PropertyGroup>
  76. <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'))" />
  77. <Error Condition="!Exists('..\packages\Fody.3.2.16\build\Fody.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Fody.3.2.16\build\Fody.targets'))" />
  78. </Target>
  79. <Import Project="..\packages\Fody.3.2.16\build\Fody.targets" Condition="Exists('..\packages\Fody.3.2.16\build\Fody.targets')" />
  80. </Project>