forked from microsoft/QuantumKatas
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQEC_BitFlipCode.csproj
More file actions
20 lines (19 loc) · 838 Bytes
/
QEC_BitFlipCode.csproj
File metadata and controls
20 lines (19 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<PlatformTarget>x64</PlatformTarget>
<IsPackable>false</IsPackable>
<RootNamespace>Quantum.Kata.QEC_BitFlipCode</RootNamespace>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Quantum.Canon" Version="0.4.1901.3104" />
<PackageReference Include="Microsoft.Quantum.Development.Kit" Version="0.4.1901.3104" />
<PackageReference Include="Microsoft.Quantum.Xunit" Version="0.4.1901.3104" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0" />
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
</ItemGroup>
</Project>