This repository has been archived by the owner on Jul 25, 2024. It is now read-only.
generated from DbUp/dbup-provider-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed reference to dbup-core and general post split cleanup
- Loading branch information
Showing
5 changed files
with
85 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net462</TargetFrameworks> | ||
<AssemblyName>Tests</AssemblyName> | ||
<RootNamespace>DbUp.SqlCe.Tests</RootNamespace> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<!-- <ImplicitUsings>enable</ImplicitUsings> Can't use implict usings with net46 --> | ||
<Nullable>enable</Nullable> | ||
<NoWarn>$(NoWarn);NETSDK1138</NoWarn> <!-- Purposefully leaving an old version of netcoreapp to ensure we have compatibility. This never gets published --> | ||
<LangVersion>latest</LangVersion> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFramework>net462</TargetFramework> | ||
<AssemblyName>Tests</AssemblyName> | ||
<RootNamespace>DbUp.SqlCe.Tests</RootNamespace> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<!-- <ImplicitUsings>enable</ImplicitUsings> Can't use implict usings with net46 --> | ||
<Nullable>enable</Nullable> | ||
<NoWarn>$(NoWarn);NETSDK1138</NoWarn> <!-- Purposefully leaving an old version of netcoreapp to ensure we have compatibility. This never gets published --> | ||
<LangVersion>latest</LangVersion> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\dbup-sqlce\dbup-sqlce.csproj"/> | ||
<PackageReference Include="DbUp.Tests.Common" Version="5.0.37"/> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0"/> | ||
<PackageReference Include="xunit" Version="2.6.6"/> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\dbup-sqlce\dbup-sqlce.csproj"/> | ||
<PackageReference Include="DbUp.Tests.Common" Version="5.0.37"/> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0"/> | ||
<PackageReference Include="xunit" Version="2.6.6"/> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Compile Remove="ApprovalFiles\*.cs"/> | ||
<None Include="ApprovalFiles\*.cs"/> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Remove="ApprovalFiles\*.cs"/> | ||
<None Include="ApprovalFiles\*.cs"/> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,28 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<Description>DbUp makes it easy to deploy and upgrade SQL Server databases. This package adds SQL CE Support.</Description> | ||
<Title>DbUp SQL CE Support</Title> | ||
<TargetFrameworks>net462</TargetFrameworks> | ||
<RootNamespace>DbUp.SqlCe</RootNamespace> | ||
<AssemblyOriginatorKeyFile>../dbup.snk</AssemblyOriginatorKeyFile> | ||
<SignAssembly>true</SignAssembly> | ||
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> | ||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> | ||
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute> | ||
<RepositoryUrl>https://github.com/DbUp/dbup-sqlce.git</RepositoryUrl> | ||
<Product>dbup_sqlce</Product> | ||
<PackageId>dbup-sqlce</PackageId> | ||
<PackageIcon>dbup-icon.png</PackageIcon> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<Description>DbUp makes it easy to deploy and upgrade SQL Server databases. This package adds SQL CE Support.</Description> | ||
<Title>DbUp SQL CE Support</Title> | ||
<Company>DbUp Contributors</Company> | ||
<Product>DbUp</Product> | ||
<Copyright>Copyright © DbUp Contributors 2015</Copyright> | ||
<TargetFramework>net462</TargetFramework> | ||
<RootNamespace>DbUp.SqlCe</RootNamespace> | ||
<AssemblyOriginatorKeyFile>../dbup.snk</AssemblyOriginatorKeyFile> | ||
<SignAssembly>true</SignAssembly> | ||
<RepositoryUrl>https://github.com/DbUp/dbup-sqlce.git</RepositoryUrl> | ||
<Product>dbup_sqlce</Product> | ||
<PackageId>dbup-sqlce</PackageId> | ||
<PackageIcon>dbup-icon.png</PackageIcon> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="dbup-core" Version="4.5.0"/> | ||
<PackageReference Include="Microsoft.SqlServer.Compact" Version="4.0.8876.1"/> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="dbup-core" Version="5.0.37"/> | ||
<PackageReference Include="Microsoft.SqlServer.Compact" Version="4.0.8876.1"/> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'net35'"> | ||
<PackageReference Include="Npgsql" Version="2.2.7"/> <!-- Last version that supports .NET 3.5 --> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' != 'net35'"> | ||
<PackageReference Include="Npgsql" Version="3.2.6"/> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Visible="false" Include="../dbup-icon.png" Pack="True" PackagePath=""/> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Visible="false" Include="../dbup-icon.png" Pack="True" PackagePath=""/> | ||
</ItemGroup> | ||
|
||
</Project> |