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 172
/
Copy pathCommandLineTool.csproj
52 lines (45 loc) · 1.92 KB
/
CommandLineTool.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>qsc</AssemblyName>
<AssemblyTitle>Microsoft Q# compiler command line tool.</AssemblyTitle>
<TargetFramework>net6.0</TargetFramework>
<OutputType>Exe</OutputType>
</PropertyGroup>
<PropertyGroup>
<Authors>Microsoft</Authors>
<Description>Microsoft's Q# command line compiler.</Description>
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
<PackageReleaseNotes>See: https://docs.microsoft.com/azure/quantum/qdk-relnotes/</PackageReleaseNotes>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/Microsoft/qsharp-compiler</PackageProjectUrl>
<PackageIcon>qdk-nuget-icon.png</PackageIcon>
<PackageTags>Quantum Q# QSharp</PackageTags>
<PackAsTool>true</PackAsTool>
<ToolCommandName>qsc</ToolCommandName>
<PackageId>Microsoft.Quantum.Compiler.CommandLine</PackageId>
<ContentTargetFolders>\</ContentTargetFolders>
<ApplicationIcon />
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.6.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="3.6.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Compiler\Compiler.csproj" />
</ItemGroup>
<ItemGroup Condition="!$([MSBuild]::IsOsPlatform('Windows'))">
<PackageReference Include="Microsoft.Quantum.LlvmBindings.Native" Version="14.0.0-CI-20221216-213951">
<PrivateAssets>all</PrivateAssets>
<Visible>false</Visible>
<Pack>false</Pack>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Content Include="..\..\..\NOTICE.txt" Link="NOTICE.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<None Include="..\..\..\build\assets\qdk-nuget-icon.png" Pack="true" Visible="false" PackagePath="" />
</ItemGroup>
</Project>