-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathOpenQasmExporter.csproj
More file actions
23 lines (21 loc) · 1.08 KB
/
OpenQasmExporter.csproj
File metadata and controls
23 lines (21 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<!--<Project Sdk="Microsoft.Quantum.Sdk/0.12.20070124">-->
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<OutputType>Library</OutputType>
<PackageId>QsharpCommunity.Simulators.OpenQasmExporter</PackageId>
<Authors />
<Company>https://qsharp.community/</Company>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/qsharp-community/qsharp-integrations.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Copyright>Copyright (c) Amir Ebrahimi. All rights reserved. Licensed under the MIT License.</Copyright>
<Description>Export Q# functions or operations to OpenQasm</Description>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Jupyter.Core" Version="1.5.152203" />
<PackageReference Include="Microsoft.Quantum.IQSharp.Jupyter" Version="0.18.2107153439" />
<PackageReference Include="Microsoft.Quantum.Simulators" Version="0.18.2107153439" />
</ItemGroup>
</Project>