Clean up packaging projects (#1289)

This commit is contained in:
Charles Gagnon
2021-11-09 15:01:04 -08:00
committed by GitHub
parent 4128344a9f
commit acfc5e813e
31 changed files with 44 additions and 372 deletions

View File

@@ -3,4 +3,9 @@
<HighEntropyVA>true</HighEntropyVA> <HighEntropyVA>true</HighEntropyVA>
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch> <TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
</PropertyGroup> </PropertyGroup>
<PropertyGroup>
<CredentialsTargetFramework>net5.0</CredentialsTargetFramework>
<ServiceLayerTargetFramework>net5.0</ServiceLayerTargetFramework>
<ResourceProviderTargetFramework>net5.0</ResourceProviderTargetFramework>
</PropertyGroup>
</Project> </Project>

View File

@@ -1,5 +1,8 @@
{ {
"sdk": { "sdk": {
"version": "5.0.301" "version": "5.0.301"
},
"msbuild-sdks": {
"Microsoft.Build.NoTargets": "3.2.9"
} }
} }

View File

@@ -1,5 +1,25 @@
<Project> <Project>
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" />
<PropertyGroup>
<TargetFramework>$(ServiceLayerTargetFramework)</TargetFramework>
<!--- Do not glob C# source files and other project items -->
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<EnableDefaultNoneItems>false</EnableDefaultNoneItems>
<IsPackable>true</IsPackable>
<IncludeBuildOutput>false</IncludeBuildOutput>
</PropertyGroup>
<PropertyGroup> <PropertyGroup>
<OUTPUT_DIR>$(MSBuildThisFileDirectory)</OUTPUT_DIR> <OUTPUT_DIR>$(MSBuildThisFileDirectory)</OUTPUT_DIR>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageVersion Condition="'$(SqlToolsVersion)' != ''">$(SqlToolsVersion)</PackageVersion>
<PackageLicenseExpression></PackageLicenseExpression>
<PackageLicenseFile>license/license.txt</PackageLicenseFile>
<PackageIcon>images\sqlserver.png</PackageIcon>
<PackageIconFullPath></PackageIconFullPath>
</PropertyGroup> </PropertyGroup>
<ItemGroup>
<None Include="../license/license.txt" Pack="true" PackagePath="license/" />
<None Include="../images/sqlserver.png" Pack="true" PackagePath="images/" />
<None Include="../lib/_._" Pack="true" PackagePath="lib/$(TargetFramework)/" />
</ItemGroup>
</Project> </Project>

View File

@@ -1,2 +0,0 @@
<Project>
</Project>

View File

@@ -1,8 +0,0 @@
using System;
namespace Microsoft.SqlToolsService
{
public class Class1
{
}
}

View File

@@ -1,30 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFramework>net5.0</TargetFramework> <!-- We don't need to generate a DLL, but we still want to include the build targets so we get the project references added as dependencies in the package -->
<!--- Do not glob C# source files and other project items --> <NoBuild>true</NoBuild>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<EnableDefaultNoneItems>false</EnableDefaultNoneItems>
<IsPackable>true</IsPackable>
<IncludeBuildOutput>false</IncludeBuildOutput>
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>
<PackageDescription>.NET client for SQL Tools Service</PackageDescription> <PackageDescription>.NET client for SQL Tools Service</PackageDescription>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageVersion Condition="'$(SqlToolsVersion)' != ''">$(SqlToolsVersion)</PackageVersion>
<PackageLicenseExpression></PackageLicenseExpression>
<PackageLicenseFile>license/license.txt</PackageLicenseFile>
<PackageIcon>images/sqlserver.png</PackageIcon>
<PackageIconFullPath></PackageIconFullPath>
</PropertyGroup> </PropertyGroup>
<ItemGroup>
<Compile Include="Class1.cs" />
<None Include="../license/license.txt" Pack="true" PackagePath="license/" />
<None Include="../images/sqlserver.png" Pack="true" PackagePath="images/" />
<None Include="../lib/_._" Pack="true" PackagePath="lib/net5.0/" />
</ItemGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="../runtime.centos.7-x64.native.Microsoft.SqlToolsService/runtime.centos.7-x64.native.Microsoft.SqlToolsService.csproj" PrivateAssets="All" /> <ProjectReference Include="../runtime.centos.7-x64.native.Microsoft.SqlToolsService/runtime.centos.7-x64.native.Microsoft.SqlToolsService.csproj" PrivateAssets="All" />
<ProjectReference Include="../runtime.debian.8-x64.native.Microsoft.SqlToolsService/runtime.debian.8-x64.native.Microsoft.SqlToolsService.csproj" PrivateAssets="All" /> <ProjectReference Include="../runtime.debian.8-x64.native.Microsoft.SqlToolsService/runtime.debian.8-x64.native.Microsoft.SqlToolsService.csproj" PrivateAssets="All" />
@@ -43,6 +26,7 @@
<ItemGroup> <ItemGroup>
<PackageReference Include="runtime.linux-64-x64.native.Microsoft.SqlToolsService" Version="$(PackageVersion)" /> <PackageReference Include="runtime.linux-64-x64.native.Microsoft.SqlToolsService" Version="$(PackageVersion)" />
<PackageReference Include="runtime.debian.8-x64.native.Microsoft.SqlToolsService" Version="$(PackageVersion)" />
<PackageReference Include="runtime.opensuse.13.2-x64.native.Microsoft.SqlToolsService" Version="$(PackageVersion)" /> <PackageReference Include="runtime.opensuse.13.2-x64.native.Microsoft.SqlToolsService" Version="$(PackageVersion)" />
<PackageReference Include="runtime.osx.10.11-x64.native.Microsoft.SqlToolsService" Version="$(PackageVersion)" /> <PackageReference Include="runtime.osx.10.11-x64.native.Microsoft.SqlToolsService" Version="$(PackageVersion)" />
<PackageReference Include="runtime.rhel.7.2-x64.native.Microsoft.SqlToolsService" Version="$(PackageVersion)" /> <PackageReference Include="runtime.rhel.7.2-x64.native.Microsoft.SqlToolsService" Version="$(PackageVersion)" />

View File

@@ -1,8 +0,0 @@
using System;
namespace runtime.osx_x64.runtime.native.Microsoft.SqlToolsService
{
public class Class1
{
}
}

View File

@@ -1,28 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.Build.NoTargets">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<!--- Do not glob C# source files and other project items -->
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<EnableDefaultNoneItems>false</EnableDefaultNoneItems>
<IsPackable>true</IsPackable>
<IncludeBuildOutput>false</IncludeBuildOutput>
</PropertyGroup>
<PropertyGroup> <PropertyGroup>
<PackageDescription>SQL Tools Service runtime components for centos.7-x64</PackageDescription> <PackageDescription>SQL Tools Service runtime components for centos.7-x64</PackageDescription>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageVersion Condition="'$(SqlToolsVersion)' != ''">$(SqlToolsVersion)</PackageVersion>
<PackageLicenseExpression></PackageLicenseExpression>
<PackageLicenseFile>license/license.txt</PackageLicenseFile>
<PackageIcon>images\sqlserver.png</PackageIcon>
<PackageIconFullPath></PackageIconFullPath>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Compile Include="Class1.cs" />
<None Include="../license/license.txt" Pack="true" PackagePath="license/" />
<None Include="../images/sqlserver.png" Pack="true" PackagePath="images/" />
<None Include="../../artifacts/publish/Microsoft.SqlTools.ServiceLayer/centos.7-x64/**" Pack="true" PackagePath="runtimes/centos.7-x64/native" /> <None Include="../../artifacts/publish/Microsoft.SqlTools.ServiceLayer/centos.7-x64/**" Pack="true" PackagePath="runtimes/centos.7-x64/native" />
<None Include="../lib/_._" Pack="true" PackagePath="lib/net5.0/" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@@ -1,8 +0,0 @@
using System;
namespace runtime.osx_x64.runtime.native.Microsoft.SqlToolsService
{
public class Class1
{
}
}

View File

@@ -1,28 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.Build.NoTargets">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<!--- Do not glob C# source files and other project items -->
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<EnableDefaultNoneItems>false</EnableDefaultNoneItems>
<IsPackable>true</IsPackable>
<IncludeBuildOutput>false</IncludeBuildOutput>
</PropertyGroup>
<PropertyGroup> <PropertyGroup>
<PackageDescription>SQL Tools Service runtime components for fedora.23-x64</PackageDescription> <PackageDescription>SQL Tools Service runtime components for fedora.23-x64</PackageDescription>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageVersion Condition="'$(SqlToolsVersion)' != ''">$(SqlToolsVersion)</PackageVersion>
<PackageLicenseExpression></PackageLicenseExpression>
<PackageLicenseFile>license/license.txt</PackageLicenseFile>
<PackageIcon>images\sqlserver.png</PackageIcon>
<PackageIconFullPath></PackageIconFullPath>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Compile Include="Class1.cs" />
<None Include="../license/license.txt" Pack="true" PackagePath="license/" />
<None Include="../images/sqlserver.png" Pack="true" PackagePath="images/" />
<None Include="../../artifacts/publish/Microsoft.SqlTools.ServiceLayer/fedora.23-x64/**" Pack="true" PackagePath="runtimes/fedora.23-x64/native" /> <None Include="../../artifacts/publish/Microsoft.SqlTools.ServiceLayer/fedora.23-x64/**" Pack="true" PackagePath="runtimes/fedora.23-x64/native" />
<None Include="../lib/_._" Pack="true" PackagePath="lib/net5.0/" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@@ -1,8 +0,0 @@
using System;
namespace runtime.osx_x64.runtime.native.Microsoft.SqlToolsService
{
public class Class1
{
}
}

View File

@@ -1,28 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.Build.NoTargets">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<!--- Do not glob C# source files and other project items -->
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<EnableDefaultNoneItems>false</EnableDefaultNoneItems>
<IsPackable>true</IsPackable>
<IncludeBuildOutput>false</IncludeBuildOutput>
</PropertyGroup>
<PropertyGroup> <PropertyGroup>
<PackageDescription>SQL Tools Service runtime components for linux-64</PackageDescription> <PackageDescription>SQL Tools Service runtime components for linux-64</PackageDescription>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageVersion Condition="'$(SqlToolsVersion)' != ''">$(SqlToolsVersion)</PackageVersion>
<PackageLicenseExpression></PackageLicenseExpression>
<PackageLicenseFile>license/license.txt</PackageLicenseFile>
<PackageIcon>images\sqlserver.png</PackageIcon>
<PackageIconFullPath></PackageIconFullPath>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Compile Include="Class1.cs" />
<None Include="../license/license.txt" Pack="true" PackagePath="license/" />
<None Include="../images/sqlserver.png" Pack="true" PackagePath="images/" />
<None Include="../../artifacts/publish/Microsoft.SqlTools.ServiceLayer/linux-64/**" Pack="true" PackagePath="runtimes/linux-x64/native" /> <None Include="../../artifacts/publish/Microsoft.SqlTools.ServiceLayer/linux-64/**" Pack="true" PackagePath="runtimes/linux-x64/native" />
<None Include="../lib/_._" Pack="true" PackagePath="lib/net5.0/" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@@ -1,8 +0,0 @@
using System;
namespace runtime.osx_x64.runtime.native.Microsoft.SqlToolsService
{
public class Class1
{
}
}

View File

@@ -1,28 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.Build.NoTargets">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<!--- Do not glob C# source files and other project items -->
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<EnableDefaultNoneItems>false</EnableDefaultNoneItems>
<IsPackable>true</IsPackable>
<IncludeBuildOutput>false</IncludeBuildOutput>
</PropertyGroup>
<PropertyGroup> <PropertyGroup>
<PackageDescription>SQL Tools Service runtime components for opensuse.13.2-x64</PackageDescription> <PackageDescription>SQL Tools Service runtime components for opensuse.13.2-x64</PackageDescription>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageVersion Condition="'$(SqlToolsVersion)' != ''">$(SqlToolsVersion)</PackageVersion>
<PackageLicenseExpression></PackageLicenseExpression>
<PackageLicenseFile>license/license.txt</PackageLicenseFile>
<PackageIcon>images\sqlserver.png</PackageIcon>
<PackageIconFullPath></PackageIconFullPath>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Compile Include="Class1.cs" /> <None Include="../../artifacts/publish/Microsoft.SqlTools.ServiceLayer-opensuse.13.2-x64-net5.0/**" Pack="true" PackagePath="runtimes/opensuse.13.2-x64/native" />
<None Include="../license/license.txt" Pack="true" PackagePath="license/" />
<None Include="../images/sqlserver.png" Pack="true" PackagePath="images/" />
<None Include="../../artifacts/downloads/Microsoft.SqlTools.ServiceLayer-opensuse.13.2-x64-net5.0/**" Pack="true" PackagePath="runtimes/opensuse.13.2-x64/native" />
<None Include="../lib/_._" Pack="true" PackagePath="lib/net5.0/" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@@ -1,8 +0,0 @@
using System;
namespace runtime.osx_x64.runtime.native.Microsoft.SqlToolsService
{
public class Class1
{
}
}

View File

@@ -1,28 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.Build.NoTargets">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<!--- Do not glob C# source files and other project items -->
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<EnableDefaultNoneItems>false</EnableDefaultNoneItems>
<IsPackable>true</IsPackable>
<IncludeBuildOutput>false</IncludeBuildOutput>
</PropertyGroup>
<PropertyGroup> <PropertyGroup>
<PackageDescription>SQL Tools Service runtime components for osx-x64</PackageDescription> <PackageDescription>SQL Tools Service runtime components for osx-x64</PackageDescription>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageVersion Condition="'$(SqlToolsVersion)' != ''">$(SqlToolsVersion)</PackageVersion>
<PackageLicenseExpression></PackageLicenseExpression>
<PackageLicenseFile>license/license.txt</PackageLicenseFile>
<PackageIcon>images\sqlserver.png</PackageIcon>
<PackageIconFullPath></PackageIconFullPath>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Compile Include="Class1.cs" />
<None Include="../license/license.txt" Pack="true" PackagePath="license/" />
<None Include="../images/sqlserver.png" Pack="true" PackagePath="images/" />
<None Include="../../artifacts/publish/Microsoft.SqlTools.ServiceLayer/osx-x64/**" Pack="true" PackagePath="runtimes/osx-x64/native" /> <None Include="../../artifacts/publish/Microsoft.SqlTools.ServiceLayer/osx-x64/**" Pack="true" PackagePath="runtimes/osx-x64/native" />
<None Include="../lib/_._" Pack="true" PackagePath="lib/net5.0/" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@@ -1,8 +0,0 @@
using System;
namespace runtime.osx_x64.runtime.native.Microsoft.SqlToolsService
{
public class Class1
{
}
}

View File

@@ -1,28 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.Build.NoTargets">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<!--- Do not glob C# source files and other project items -->
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<EnableDefaultNoneItems>false</EnableDefaultNoneItems>
<IsPackable>true</IsPackable>
<IncludeBuildOutput>false</IncludeBuildOutput>
</PropertyGroup>
<PropertyGroup> <PropertyGroup>
<PackageDescription>SQL Tools Service runtime components for rhel.7.2-x64</PackageDescription> <PackageDescription>SQL Tools Service runtime components for rhel.7.2-x64</PackageDescription>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageVersion Condition="'$(SqlToolsVersion)' != ''">$(SqlToolsVersion)</PackageVersion>
<PackageLicenseExpression></PackageLicenseExpression>
<PackageLicenseFile>license/license.txt</PackageLicenseFile>
<PackageIcon>images\sqlserver.png</PackageIcon>
<PackageIconFullPath></PackageIconFullPath>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Compile Include="Class1.cs" />
<None Include="../license/license.txt" Pack="true" PackagePath="license/" />
<None Include="../images/sqlserver.png" Pack="true" PackagePath="images/" />
<None Include="../../artifacts/publish/Microsoft.SqlTools.ServiceLayer/rhel.7.2-x64/**" Pack="true" PackagePath="runtimes/rhel.7.2-x64/native" /> <None Include="../../artifacts/publish/Microsoft.SqlTools.ServiceLayer/rhel.7.2-x64/**" Pack="true" PackagePath="runtimes/rhel.7.2-x64/native" />
<None Include="../lib/_._" Pack="true" PackagePath="lib/net5.0/" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@@ -1,8 +0,0 @@
using System;
namespace runtime.osx_x64.runtime.native.Microsoft.SqlToolsService
{
public class Class1
{
}
}

View File

@@ -1,28 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.Build.NoTargets">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<!--- Do not glob C# source files and other project items -->
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<EnableDefaultNoneItems>false</EnableDefaultNoneItems>
<IsPackable>true</IsPackable>
<IncludeBuildOutput>false</IncludeBuildOutput>
</PropertyGroup>
<PropertyGroup> <PropertyGroup>
<PackageDescription>SQL Tools Service runtime components for ubuntu.14.04</PackageDescription> <PackageDescription>SQL Tools Service runtime components for ubuntu.14.04</PackageDescription>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageVersion Condition="'$(SqlToolsVersion)' != ''">$(SqlToolsVersion)</PackageVersion>
<PackageLicenseExpression></PackageLicenseExpression>
<PackageLicenseFile>license/license.txt</PackageLicenseFile>
<PackageIcon>images\sqlserver.png</PackageIcon>
<PackageIconFullPath></PackageIconFullPath>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Compile Include="Class1.cs" />
<None Include="../license/license.txt" Pack="true" PackagePath="license/" />
<None Include="../images/sqlserver.png" Pack="true" PackagePath="images/" />
<None Include="../../artifacts/publish/Microsoft.SqlTools.ServiceLayer/ubuntu.14.04/**" Pack="true" PackagePath="runtimes/ubuntu.14.04-x64/native" /> <None Include="../../artifacts/publish/Microsoft.SqlTools.ServiceLayer/ubuntu.14.04/**" Pack="true" PackagePath="runtimes/ubuntu.14.04-x64/native" />
<None Include="../lib/_._" Pack="true" PackagePath="lib/net5.0/" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@@ -1,8 +0,0 @@
using System;
namespace runtime.osx_x64.runtime.native.Microsoft.SqlToolsService
{
public class Class1
{
}
}

View File

@@ -1,28 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.Build.NoTargets">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<!--- Do not glob C# source files and other project items -->
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<EnableDefaultNoneItems>false</EnableDefaultNoneItems>
<IsPackable>true</IsPackable>
<IncludeBuildOutput>false</IncludeBuildOutput>
</PropertyGroup>
<PropertyGroup> <PropertyGroup>
<PackageDescription>SQL Tools Service runtime components for ubuntu.16.04-x64</PackageDescription> <PackageDescription>SQL Tools Service runtime components for ubuntu.16.04-x64</PackageDescription>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageVersion Condition="'$(SqlToolsVersion)' != ''">$(SqlToolsVersion)</PackageVersion>
<PackageLicenseExpression></PackageLicenseExpression>
<PackageLicenseFile>license/license.txt</PackageLicenseFile>
<PackageIcon>images\sqlserver.png</PackageIcon>
<PackageIconFullPath></PackageIconFullPath>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Compile Include="Class1.cs" />
<None Include="../license/license.txt" Pack="true" PackagePath="license/" />
<None Include="../images/sqlserver.png" Pack="true" PackagePath="images/" />
<None Include="../../artifacts/publish/Microsoft.SqlTools.ServiceLayer/ubuntu.16.04/**" Pack="true" PackagePath="runtimes/ubuntu.16.04-x64/native" /> <None Include="../../artifacts/publish/Microsoft.SqlTools.ServiceLayer/ubuntu.16.04/**" Pack="true" PackagePath="runtimes/ubuntu.16.04-x64/native" />
<None Include="../lib/_._" Pack="true" PackagePath="lib/net5.0/" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@@ -1,8 +0,0 @@
using System;
namespace runtime.win10_arm.runtime.native.Microsoft.SqlToolsService
{
public class Class1
{
}
}

View File

@@ -1,28 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.Build.NoTargets">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<!--- Do not glob C# source files and other project items -->
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<EnableDefaultNoneItems>false</EnableDefaultNoneItems>
<IsPackable>true</IsPackable>
<IncludeBuildOutput>false</IncludeBuildOutput>
</PropertyGroup>
<PropertyGroup> <PropertyGroup>
<PackageDescription>SQL Tools Service runtime components for win10-arm</PackageDescription> <PackageDescription>SQL Tools Service runtime components for win10-arm</PackageDescription>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageVersion Condition="'$(SqlToolsVersion)' != ''">$(SqlToolsVersion)</PackageVersion>
<PackageLicenseExpression></PackageLicenseExpression>
<PackageLicenseFile>license/license.txt</PackageLicenseFile>
<PackageIcon>images\sqlserver.png</PackageIcon>
<PackageIconFullPath></PackageIconFullPath>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Compile Include="Class1.cs" />
<None Include="../license/license.txt" Pack="true" PackagePath="license/" />
<None Include="../images/sqlserver.png" Pack="true" PackagePath="images/" />
<None Include="../../artifacts/publish/Microsoft.SqlTools.ServiceLayer/win10-arm/**" Pack="true" PackagePath="runtimes/win10-arm/native" /> <None Include="../../artifacts/publish/Microsoft.SqlTools.ServiceLayer/win10-arm/**" Pack="true" PackagePath="runtimes/win10-arm/native" />
<None Include="../lib/_._" Pack="true" PackagePath="lib/net5.0/" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@@ -1,8 +0,0 @@
using System;
namespace runtime.win10_arm64.runtime.native.Microsoft.SqlToolsService
{
public class Class1
{
}
}

View File

@@ -1,28 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.Build.NoTargets">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<!--- Do not glob C# source files and other project items -->
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<EnableDefaultNoneItems>false</EnableDefaultNoneItems>
<IsPackable>true</IsPackable>
<IncludeBuildOutput>false</IncludeBuildOutput>
</PropertyGroup>
<PropertyGroup> <PropertyGroup>
<PackageDescription>SQL Tools Service runtime components for win10-arm64</PackageDescription> <PackageDescription>SQL Tools Service runtime components for win10-arm64</PackageDescription>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageVersion Condition="'$(SqlToolsVersion)' != ''">$(SqlToolsVersion)</PackageVersion>
<PackageLicenseExpression></PackageLicenseExpression>
<PackageLicenseFile>license/license.txt</PackageLicenseFile>
<PackageIcon>images\sqlserver.png</PackageIcon>
<PackageIconFullPath></PackageIconFullPath>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Compile Include="Class1.cs" />
<None Include="../license/license.txt" Pack="true" PackagePath="license/" />
<None Include="../images/sqlserver.png" Pack="true" PackagePath="images/" />
<None Include="../../artifacts/publish/Microsoft.SqlTools.ServiceLayer/win10-arm64/**" Pack="true" PackagePath="runtimes/win10-arm64/native" /> <None Include="../../artifacts/publish/Microsoft.SqlTools.ServiceLayer/win10-arm64/**" Pack="true" PackagePath="runtimes/win10-arm64/native" />
<None Include="../lib/_._" Pack="true" PackagePath="lib/net5.0/" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@@ -1,8 +0,0 @@
using System;
namespace runtime.osx_x64.runtime.native.Microsoft.SqlToolsService
{
public class Class1
{
}
}

View File

@@ -1,28 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.Build.NoTargets">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<!--- Do not glob C# source files and other project items -->
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<EnableDefaultNoneItems>false</EnableDefaultNoneItems>
<IsPackable>true</IsPackable>
<IncludeBuildOutput>false</IncludeBuildOutput>
</PropertyGroup>
<PropertyGroup> <PropertyGroup>
<PackageDescription>SQL Tools Service runtime components for win7-x64</PackageDescription> <PackageDescription>SQL Tools Service runtime components for win7-x64</PackageDescription>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageVersion Condition="'$(SqlToolsVersion)' != ''">$(SqlToolsVersion)</PackageVersion>
<PackageLicenseExpression></PackageLicenseExpression>
<PackageLicenseFile>license/license.txt</PackageLicenseFile>
<PackageIcon>images\sqlserver.png</PackageIcon>
<PackageIconFullPath></PackageIconFullPath>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Compile Include="Class1.cs" />
<None Include="../license/license.txt" Pack="true" PackagePath="license/" />
<None Include="../images/sqlserver.png" Pack="true" PackagePath="images/" />
<None Include="../../artifacts/publish/Microsoft.SqlTools.ServiceLayer/win7-x64/**" Pack="true" PackagePath="runtimes/win7-x64/native" /> <None Include="../../artifacts/publish/Microsoft.SqlTools.ServiceLayer/win7-x64/**" Pack="true" PackagePath="runtimes/win7-x64/native" />
<None Include="../lib/_._" Pack="true" PackagePath="lib/net5.0/" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@@ -1,8 +0,0 @@
using System;
namespace runtime.osx_x64.runtime.native.Microsoft.SqlToolsService
{
public class Class1
{
}
}

View File

@@ -1,28 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.Build.NoTargets">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<!--- Do not glob C# source files and other project items -->
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<EnableDefaultNoneItems>false</EnableDefaultNoneItems>
<IsPackable>true</IsPackable>
<IncludeBuildOutput>false</IncludeBuildOutput>
</PropertyGroup>
<PropertyGroup> <PropertyGroup>
<PackageDescription>SQL Tools Service runtime components for win7-x86</PackageDescription> <PackageDescription>SQL Tools Service runtime components for win7-x86</PackageDescription>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageVersion Condition="'$(SqlToolsVersion)' != ''">$(SqlToolsVersion)</PackageVersion>
<PackageLicenseExpression></PackageLicenseExpression>
<PackageLicenseFile>license/license.txt</PackageLicenseFile>
<PackageIcon>images\sqlserver.png</PackageIcon>
<PackageIconFullPath></PackageIconFullPath>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Compile Include="Class1.cs" />
<None Include="../license/license.txt" Pack="true" PackagePath="license/" />
<None Include="../images/sqlserver.png" Pack="true" PackagePath="images/" />
<None Include="../../artifacts/publish/Microsoft.SqlTools.ServiceLayer/win7-x86/**" Pack="true" PackagePath="runtimes/win7-x86/native" /> <None Include="../../artifacts/publish/Microsoft.SqlTools.ServiceLayer/win7-x86/**" Pack="true" PackagePath="runtimes/win7-x86/native" />
<None Include="../lib/_._" Pack="true" PackagePath="lib/net5.0/" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@@ -17,12 +17,6 @@
<PackageProjectUrl>https://github.com/Microsoft/sqltoolsservice/</PackageProjectUrl> <PackageProjectUrl>https://github.com/Microsoft/sqltoolsservice/</PackageProjectUrl>
<PackageTags>SQL XPLAT</PackageTags> <PackageTags>SQL XPLAT</PackageTags>
</PropertyGroup> </PropertyGroup>
<PropertyGroup>
<CredentialsTargetFramework>net5.0</CredentialsTargetFramework>
<ServiceLayerTargetFramework>net5.0</ServiceLayerTargetFramework>
<ResourceProviderTargetFramework>net5.0</ResourceProviderTargetFramework>
</PropertyGroup>
<PropertyGroup> <PropertyGroup>
<DebugType>portable</DebugType> <DebugType>portable</DebugType>
</PropertyGroup> </PropertyGroup>