This repository was archived by the owner on Jan 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 181
Expand file tree
/
Copy pathRuntime.csproj
More file actions
50 lines (43 loc) · 2.14 KB
/
Runtime.csproj
File metadata and controls
50 lines (43 loc) · 2.14 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
47
48
49
50
<Project Sdk="Microsoft.Quantum.Sdk/0.25.228311">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<AssemblyName>Microsoft.Quantum.Chemistry.Runtime</AssemblyName>
<QsharpDocsGeneration>true</QsharpDocsGeneration>
<IncludeQsharpCorePackages>false</IncludeQsharpCorePackages>
<RunQDocGen>True</RunQDocGen>
<!-- List the name of the metapackage that users can
use to take a dependency on these Q# APIs, rather
than the subpackage directly. -->
<QsharpDocsPackageId>Microsoft.Quantum.Chemistry</QsharpDocsPackageId>
</PropertyGroup>
<PropertyGroup>
<Authors>Microsoft</Authors>
<Description>Microsoft's Quantum Chemistry Libraries.</Description>
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
<PackageId>Microsoft.Quantum.Chemistry.Runtime</PackageId>
<PackageReleaseNotes>See: https://docs.microsoft.com/azure/quantum/qdk-relnotes/</PackageReleaseNotes>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/microsoft/QuantumLibraries/tree/main/Chemistry</PackageProjectUrl>
<PackageIcon>qdk-nuget-icon.png</PackageIcon>
<PackageTags>Quantum Q# Qsharp</PackageTags>
<NoWarn>1591</NoWarn>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedAllSources>true</EmbedAllSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb;.xml</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\Common\DelaySign.cs" Link="Properties\DelaySign.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\Standard\src\Standard.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Quantum.Simulators" Version="0.25.228311" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\..\Build\assets\qdk-nuget-icon.png" Pack="true" Visible="false" PackagePath="" />
</ItemGroup>
</Project>