forked from microsoft/qsharp-compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommandLineTool.csproj
51 lines (44 loc) · 1.96 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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\Common\AssemblyCommon.props" />
<PropertyGroup>
<AssemblyName>qsc</AssemblyName>
<AssemblyTitle>Microsoft Q# compiler command line tool.</AssemblyTitle>
<TargetFramework>netcoreapp3.1</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/en-us/quantum/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" />
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.164" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Compiler\Compiler.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\Common\DelaySign.cs" Link="Properties\DelaySign.cs" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="..\..\Common\stylecop.json" Link="stylecop.json" />
<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>