forked from microsoft/qsharp-compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCompiler.csproj
More file actions
46 lines (39 loc) · 1.55 KB
/
Copy pathCompiler.csproj
File metadata and controls
46 lines (39 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\Common\AssemblyCommon.props" />
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<PackageId>Microsoft.Quantum.Compiler</PackageId>
<AssemblyName>Microsoft.Quantum.QsCompiler</AssemblyName>
<RootNamespace>Microsoft.Quantum.QsCompiler</RootNamespace>
<AssemblyTitle>Microsoft Q# compiler library.</AssemblyTitle>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\BondSchemas\BondSchemas.csproj" />
<ProjectReference Include="..\CompilationManager\CompilationManager.csproj" />
<ProjectReference Include="..\Optimizations\Optimizations.fsproj" />
<ProjectReference Include="..\..\Documentation\DocumentationParser\DocumentationParser.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\Common\DelaySign.cs" Link="Properties\DelaySign.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json.Bson" Version="1.0.2" />
<PackageReference Include="System.CodeDom" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<None Update="Templates\QirDriverCpp.tt">
<Generator>TextTemplatingFilePreprocessor</Generator>
<LastGenOutput>QirDriverCpp.cs</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
</ItemGroup>
<ItemGroup>
<Compile Update="Templates\QirDriverCpp.cs">
<DesignTime>False</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>QirDriverCpp.tt</DependentUpon>
</Compile>
</ItemGroup>
</Project>