Skip to content
This repository was archived by the owner on Jan 12, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/QsCompiler/DataStructures/ReservedKeywords.fs
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,7 @@ module AssemblyConstants =
let ToffoliSimulator = "ToffoliSimulator"
let ResourcesEstimator = "ResourcesEstimator"
let ExposeReferencesViaTestNames = "ExposeReferencesViaTestNames"
let GenerateConcreteIntrinsic = "GenerateConcreteIntrinsic"

/// The runtime capabilities supported by an execution target. The names of the capabilities here match the ones
/// defined by the SDK.
Expand Down
16 changes: 8 additions & 8 deletions src/QuantumSdk/DefaultItems/DefaultItems.props.v.template
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,18 @@
</PropertyGroup>

<!-- unverified configurable properties -->
<PropertyGroup>
<PropertyGroup>
<QscVerbosity>Normal</QscVerbosity>
<CsharpGeneration>true</CsharpGeneration> <!-- at some point we may want to make False the default -->
<IncludeQsharpCorePackages>true</IncludeQsharpCorePackages>
<IncludeProviderPackages>true</IncludeProviderPackages>
<IncludeQsharpCorePackages>true</IncludeQsharpCorePackages>
<IncludeProviderPackages>true</IncludeProviderPackages>
<QsharpDocsGeneration>false</QsharpDocsGeneration>
<ExposeReferencesViaTestNames>false</ExposeReferencesViaTestNames> <!-- IMPORTANT: If the name of this property is changed, the property name in the language server needs to be adapted! -->
<DefaultQscBuildConfigExe>dotnet "$(MSBuildThisFileDirectory)../tools/utils/Microsoft.Quantum.Sdk.BuildConfiguration.dll"</DefaultQscBuildConfigExe>
<QscBuildConfigExe>$(DefaultQscBuildConfigExe)</QscBuildConfigExe>
<DefaultQscExe>dotnet "$(MSBuildThisFileDirectory)../tools/qsc/qsc.dll"</DefaultQscExe>
<QscExe>$(DefaultQscExe)</QscExe>
<DefaultQscBuildConfigExe>dotnet "$(MSBuildThisFileDirectory)../tools/utils/Microsoft.Quantum.Sdk.BuildConfiguration.dll"</DefaultQscBuildConfigExe>
<QscBuildConfigExe>$(DefaultQscBuildConfigExe)</QscBuildConfigExe>
<DefaultQscExe>dotnet "$(MSBuildThisFileDirectory)../tools/qsc/qsc.dll"</DefaultQscExe>
<QscExe>$(DefaultQscExe)</QscExe>
<GenerateConcreteIntrinsic>false</GenerateConcreteIntrinsic>
</PropertyGroup>

</Project>

1 change: 1 addition & 0 deletions src/QuantumSdk/Sdk/Sdk.targets
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@
<_QscCommandPredefinedAssemblyProperties Condition="'$(ExposeReferencesViaTestNames)'">$(_QscCommandPredefinedAssemblyProperties)$(_NewLineIndent)ExposeReferencesViaTestNames:true</_QscCommandPredefinedAssemblyProperties>
<_QscCommandPredefinedAssemblyProperties Condition="'$(_QscDocsPackageId)' != ''">$(_QscCommandPredefinedAssemblyProperties)$(_NewLineIndent)DocsPackageId:$(_QscDocsPackageId)</_QscCommandPredefinedAssemblyProperties>
<_QscCommandPredefinedAssemblyProperties Condition="'$(QsharpDocsGeneration)'">$(_QscCommandPredefinedAssemblyProperties)$(_NewLineIndent)DocsOutputPath:"$(QsharpDocsOutputPath)"</_QscCommandPredefinedAssemblyProperties>
<_QscCommandPredefinedAssemblyProperties Condition="'$(GenerateConcreteIntrinsic)'">$(_QscCommandPredefinedAssemblyProperties)$(_NewLineIndent)GenerateConcreteIntrinsic:$(GenerateConcreteIntrinsic)</_QscCommandPredefinedAssemblyProperties>
<_QscCommandAssemblyPropertiesFlag>$(_NewLine)--assembly-properties$(_QscCommandPredefinedAssemblyProperties)</_QscCommandAssemblyPropertiesFlag>
<_QscCommandAssemblyPropertiesFlag Condition="'$(QscCommandAssemblyProperties)' != ''">$(_QscCommandAssemblyPropertiesFlag)$(_NewLineIndent)$(QscCommandAssemblyProperties)</_QscCommandAssemblyPropertiesFlag>
<AdditionalQscArguments Condition="'$(AdditionalQscArguments)' != ''">$(_NewLine)$(AdditionalQscArguments)</AdditionalQscArguments>
Expand Down