forked from microsoft/Quantum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQiskit.csproj
30 lines (28 loc) · 1.03 KB
/
Qiskit.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<PlatformTarget>x64</PlatformTarget>
<AssemblyName>Microsoft.Quantum.Samples.Qiskit</AssemblyName>
<RootNamespace>Microsoft.Quantum.Samples.Qiskit</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Content Include="QiskitInterface.py">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="requirements.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<None Include="README.md" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Quantum.Development.Kit" Version="0.5.1903.2703" />
<PackageReference Include="Microsoft.Quantum.Canon" Version="0.5.1903.2703" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\OpenQasm\OpenQasm.csproj" />
<ProjectReference Include="..\Measurement\Measurement.csproj" />
</ItemGroup>
</Project>