DotNetTools 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. commit 2a1cf12ae9ac6f3adba98bd44f093f9210d17cda
  2. Merge: ba676a9f624 4baa07ccae9
  3. Author: Nate McMaster <[email protected]>
  4. Date: Fri Sep 28 11:54:18 2018 -0700
  5. Merge branch 'release/2.2'
  6. diff --cc src/dotnet-sql-cache/dotnet-sql-cache.csproj
  7. index b568743f331,59017c22ff5..f877ba3b78d
  8. --- a/src/dotnet-sql-cache/dotnet-sql-cache.csproj
  9. +++ b/src/dotnet-sql-cache/dotnet-sql-cache.csproj
  10. @@@ -1,7 -1,7 +1,7 @@@
  11. --<Project Sdk="Microsoft.NET.Sdk">
  12. ++<Project Sdk="Microsoft.NET.Sdk">
  13. <PropertyGroup>
  14. - <TargetFramework>netcoreapp2.2</TargetFramework>
  15. + <TargetFramework>netcoreapp3.0</TargetFramework>
  16. <OutputType>exe</OutputType>
  17. <Description>Command line tool to create tables and indexes in a Microsoft SQL Server database for distributed caching.</Description>
  18. <PackageTags>cache;distributedcache;sqlserver</PackageTags>
  19. @@@ -21,16 -21,15 +21,16 @@@
  20. <ItemGroup>
  21. <!-- These files should be signed by corefx -->
  22. - <ExcludePackageFileFromSigning Include="tools/$(TargetFramework)/any/runtimes/win-arm64/native/sni.dll" />
  23. - <ExcludePackageFileFromSigning Include="tools/$(TargetFramework)/any/runtimes/win-x64/native/sni.dll" />
  24. - <ExcludePackageFileFromSigning Include="tools/$(TargetFramework)/any/runtimes/win-x86/native/sni.dll" />
  25. - <ExcludePackageFileFromSigning Include="tools/$(TargetFramework)/any/System.Data.SqlClient.dll" />
  26. - <ExcludePackageFileFromSigning Include="tools/$(TargetFramework)/any/System.Security.Permissions.dll" />
  27. - <ExcludePackageFileFromSigning Include="tools/$(TargetFramework)/any/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll" />
  28. - <ExcludePackageFileFromSigning Include="tools/$(TargetFramework)/any/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll" />
  29. - <ExcludePackageFileFromSigning Include="tools/$(TargetFramework)/any/System.Runtime.CompilerServices.Unsafe.dll" />
  30. - <ExcludePackageFileFromSigning Include="tools/$(TargetFramework)/any/System.Text.Encoding.CodePages.dll" />
  31. - <ExcludePackageFileFromSigning Include="tools/$(TargetFramework)/any/runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll" />
  32. + <ExcludePackageFileFromSigning Include="$(PublishDir)runtimes/win-arm64/native/sni.dll" PackagePath="tools/$(TargetFramework)/any/runtimes/win-arm64/native/sni.dll" />
  33. + <ExcludePackageFileFromSigning Include="$(PublishDir)runtimes/win-x64/native/sni.dll" PackagePath="tools/$(TargetFramework)/any/runtimes/win-x64/native/sni.dll" />
  34. + <ExcludePackageFileFromSigning Include="$(PublishDir)runtimes/win-x86/native/sni.dll" PackagePath="tools/$(TargetFramework)/any/runtimes/win-x86/native/sni.dll" />
  35. + <ExcludePackageFileFromSigning Include="$(PublishDir)System.Data.SqlClient.dll" PackagePath="tools/$(TargetFramework)/any/System.Data.SqlClient.dll" />
  36. ++ <ExcludePackageFileFromSigning Include="$(PublishDir)System.Security.Permissions.dll" PackagePath="tools/$(TargetFramework)/any/System.Security.Permissions.dll" />
  37. + <ExcludePackageFileFromSigning Include="$(PublishDir)runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll" PackagePath="tools/$(TargetFramework)/any/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll" />
  38. + <ExcludePackageFileFromSigning Include="$(PublishDir)runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll" PackagePath="tools/$(TargetFramework)/any/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll" />
  39. + <ExcludePackageFileFromSigning Include="$(PublishDir)System.Runtime.CompilerServices.Unsafe.dll" PackagePath="tools/$(TargetFramework)/any/System.Runtime.CompilerServices.Unsafe.dll" />
  40. + <ExcludePackageFileFromSigning Include="$(PublishDir)System.Text.Encoding.CodePages.dll" PackagePath="tools/$(TargetFramework)/any/System.Text.Encoding.CodePages.dll" />
  41. + <ExcludePackageFileFromSigning Include="$(PublishDir)runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll" PackagePath="tools/$(TargetFramework)/any/runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll" />
  42. </ItemGroup>
  43. </Project>