Skip to content

Commit

Permalink
Merge pull request #3 from ormico/feature/upgrade-to-dotnet8
Browse files Browse the repository at this point in the history
upgrade .net version to 8 and set assembly version
  • Loading branch information
ormico authored Nov 27, 2023
2 parents 963a886 + cf4b89a commit b983666
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -1,21 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<RepositoryUrl>https://github.com/ormico/dbpatchmanager-sqlserver</RepositoryUrl>
<Authors>Zack Moore</Authors>
<Company>Ormico</Company>
<Product>SQL Server plugin for Ormico DB Patch Manager</Product>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Copyright>Copyright (c) 2020 Zack Moore</Copyright>
<Copyright>Copyright (c) 2023 Zack Moore</Copyright>
<Description>SQL Server plugin for Ormico DB Patch Manager. Provides interface for DB Patch Manager to perform change control on SQL Server.</Description>
<PackageProjectUrl>https://dbpatch.dev/</PackageProjectUrl>
<PackageIcon>dbpatch-manager-profile.png</PackageIcon>
<Version>1.0.0</Version>
<Version>2.2.0</Version>
</PropertyGroup>

<ItemGroup>
<None Remove="SqlScripts\AddInstalledPatch.sql" />
<None Remove="SqlScripts\dropAllSprocsViewsFunctions.sql" />
Expand All @@ -24,18 +22,17 @@
<None Remove="SqlScripts\temp.sql" />
<None Include="..\..\assets\dbpatch-manager-profile.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
<PackagePath>
</PackagePath>
</None>
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="SqlScripts\AddInstalledPatch.sql" />
<EmbeddedResource Include="SqlScripts\dropAllSprocsViewsFunctions.sql" />
<EmbeddedResource Include="SqlScripts\GetInstalledPatches.sql" />
<EmbeddedResource Include="SqlScripts\InitPatchTable.sql" />
<EmbeddedResource Include="SqlScripts\temp.sql" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Dapper" Version="1.60.6" />
<PackageReference Include="Ormico.DbPatchManager.Common" Version="1.0.0" />
Expand All @@ -44,7 +41,8 @@
<ItemGroup>
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
<PackagePath>
</PackagePath>
</None>
</ItemGroup>
</Project>
</Project>
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@


Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.28803.352
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ormico.DbPatchManager.SqlServer", "Ormico.DbPatchManager.SqlServer\Ormico.DbPatchManager.SqlServer.csproj", "{6D61EBB1-6F1C-4798-878E-E2BBC374AFEB}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ormico.DbPatchManager.SqlServer", "Ormico.DbPatchManager.SqlServer\Ormico.DbPatchManager.SqlServer.csproj", "{6D61EBB1-6F1C-4798-878E-E2BBC374AFEB}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down

0 comments on commit b983666

Please sign in to comment.