mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-13 17:23:02 -05:00
* Set up CI with Azure Pipelines [skip ci] * Update publishSqlCoreProject.yml for Azure Pipelines * Update publishSqlCoreProject.yml for Azure Pipelines * Update publishSqlCoreProject.yml for Azure Pipelines * Update publishSqlCoreProject.yml for Azure Pipelines * Update publishSqlCoreProject.yml for Azure Pipelines * Updating json rpc target framework * Fixing packages to pack * fixing pattern * Fixing project pattern * adding versioning schema * fixing versioning scheme * fixing nuget package name * adding name * removing var * Fixing stuff * Fixing stuff * Fixing stuff * Fixing build name * removing build name * fixing name * fixing stuff * fix pattern * Fixing stuff * Fixing feed * Fix stuff * Fixing feed * fixing proj name * Fixing stuff * Fixing netframework version * Fixing target framework * Adding target framework to dependency * Fixing frameworks * adding net7.0 * adding flag * Fixing target frameworks and making code compatible with lang version * fixed flag * Fixing assembly name * Adding hosting in nuget package * Fixing tests * Moving steps to its main pipeline * only releasing when release is true * Fixing build scripts * Adding version to csproj for packaging * adding version * Fix dirs * Adding version number to right prop group * Adding necessary dis * Fixing build number * fixing datatype * Using different var * Removing unused yml * Adding back nullables to hosting * Adding back more nullables * adding back more nullables * moving some props to dir level * Fixing tests * Removing dup properties * Supporting different target frameworks in hosting * Removing additional setting in csproj * signing sql core dll in publish * Fixing version setting * Adding to build * Added signing and packaging flag * Fixing file pattern
45 lines
2.3 KiB
XML
45 lines
2.3 KiB
XML
<Project>
|
|
<PropertyGroup>
|
|
<AssemblyCompany>Microsoft</AssemblyCompany>
|
|
<AssemblyCopyright>© Microsoft Corporation. All rights reserved.</AssemblyCopyright>
|
|
<Company>Microsoft</Company>
|
|
<Product>Microsoft Sql Tools</Product>
|
|
<Authors>Microsoft</Authors>
|
|
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
|
|
<HighEntropyVA>true</HighEntropyVA>
|
|
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
|
|
<RootDir>$(MSBuildThisFileDirectory)</RootDir>
|
|
|
|
<!-- Defaults-->
|
|
<!-- The revision version is currently generated by the release stage, which runs after build. So until
|
|
that can be refactored just set to 0/99 here since it doesn't need to exactly match the release version
|
|
(especially with the commit hash being embedded in)
|
|
-->
|
|
<Revision Condition="$(Patch) != ''">0</Revision>
|
|
<Revision Condition="$(Patch) == ''">99</Revision>
|
|
<Major Condition="$(Major) == ''">99</Major>
|
|
<Minor Condition="$(Minor) == ''">99</Minor>
|
|
<Patch Condition="$(Patch) == ''">99</Patch>
|
|
|
|
<!-- AssemblyVersion should not change for non-major releases. -->
|
|
<AssemblyVersion>$(Major).0.0.0</AssemblyVersion>
|
|
<Version>$(Major).$(Minor).$(Patch).$(Revision)</Version>
|
|
<FileVersion>$(Version)</FileVersion>
|
|
<InformationalVersion>$(Version)</InformationalVersion>
|
|
|
|
<ToolsServiceTargetRuntimes>win-x64;win-x86;win-arm64;ubuntu.14.04-x64;ubuntu.16.04-x64;centos.7-x64;rhel.7.2-x64;debian.8-x64;fedora.23-x64;opensuse.13.2-x64;osx.10.11-x64;osx-x64;osx-arm64;linux-x64;linux-arm64</ToolsServiceTargetRuntimes>
|
|
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
|
|
<EnableNETAnalyzers>true</EnableNETAnalyzers>
|
|
<!-- This is required for IDE0005 to fail the build https://github.com/dotnet/roslyn/issues/41640 -->
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<!-- For official builds we want to set this so that "official build" settings such as normalized source
|
|
paths are applied. https://learn.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#continuousintegrationbuild
|
|
-->
|
|
<PropertyGroup Condition="'$(TF_BUILD)' == 'true' Or '$(GITHUB_ACTIONS)' == 'true'">
|
|
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
|
|
</PropertyGroup>
|
|
</Project>
|