Skip to content

Commit

Permalink
Replaced template placeholders
Browse files Browse the repository at this point in the history
  • Loading branch information
droyad committed Jan 24, 2024
1 parent 44647c1 commit b3866bf
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 25 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
# Using this Template

1. Create a new Repository in GitHub based on this template
- The name should be `dbup-nameofthenewprovider`
- The name should be `dbup-nameofthefirebird`
- It should be public
1. Clone it
1. Open it in VSCode or other light weight editor that doesn't have strong opinions about solution/project structure (i.e. not Rider/VS)
1. Search for `NewProvider` and replace with the new provider's name, **turning on the preserve case option**
1. Search for `Firebird` and replace with the new provider's name, **turning on the preserve case option**
1. Rename the following:
- `dbup-newprovider.sln`
- `dbup-newprovider.sln.DotSettings`
- `dbup-newprovider\dbup-newprovider.csproj`
- `dbup-newprovider` directory
- `dbup-firebird.sln`
- `dbup-firebird.sln.DotSettings`
- `dbup-firebird\dbup-firebird.csproj`
- `dbup-firebird` directory
1. Run `dotnet build` to ensure it builds
1. Delete these instructions up to and including the next line, then check in

[![GitHub Workflow Status (branch)](https://img.shields.io/github/workflow/status/DbUp/dbup-newprovider/CI/main)](https://github.com/DbUp/dbup-newprovider/actions/workflows/main.yml?query=branch%3Amain)
[![NuGet](https://img.shields.io/nuget/dt/dbup-newprovider.svg)](https://www.nuget.org/packages/dbup-newprovider)
[![NuGet](https://img.shields.io/nuget/v/dbup-newprovider.svg)](https://www.nuget.org/packages/dbup-newprovider)
[![Prerelease](https://img.shields.io/nuget/vpre/dbup-newprovider?color=orange&label=prerelease)](https://www.nuget.org/packages/dbup-newprovider)
[![GitHub Workflow Status (branch)](https://img.shields.io/github/workflow/status/DbUp/dbup-firebird/CI/main)](https://github.com/DbUp/dbup-firebird/actions/workflows/main.yml?query=branch%3Amain)
[![NuGet](https://img.shields.io/nuget/dt/dbup-firebird.svg)](https://www.nuget.org/packages/dbup-firebird)
[![NuGet](https://img.shields.io/nuget/v/dbup-firebird.svg)](https://www.nuget.org/packages/dbup-firebird)
[![Prerelease](https://img.shields.io/nuget/vpre/dbup-firebird?color=orange&label=prerelease)](https://www.nuget.org/packages/dbup-firebird)

# DbUp NewProvider support
# DbUp Firebird support
DbUp is a .NET library that helps you to deploy changes to SQL Server databases. It tracks which SQL scripts have been run already, and runs the change scripts that are needed to get your database up to date.

## Getting Help
To learn more about DbUp check out the [documentation](https://dbup.readthedocs.io/en/latest/)

Please only log issue related to NewProvider support in this repo. For cross cutting issues, please use our [main issue list](https://github.com/DbUp/DbUp/issues).
Please only log issue related to Firebird support in this repo. For cross cutting issues, please use our [main issue list](https://github.com/DbUp/DbUp/issues).

# Contributing

Expand Down
4 changes: 2 additions & 2 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@

<PropertyGroup>
<Authors>https://github.com/orgs/DbUp/people</Authors>
<PackageReleaseNotes>https://github.com/DbUp/dbup-newprovider/releases</PackageReleaseNotes>
<PackageReleaseNotes>https://github.com/DbUp/dbup-firebird/releases</PackageReleaseNotes>
<PackageProjectUrl>https://dbup.github.io</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/dbup-newprovider/dbup-newprovider.git</RepositoryUrl>
<RepositoryUrl>https://github.com/dbup-firebird/dbup-firebird.git</RepositoryUrl>
<LangVersion>latest</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/Tests/Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFrameworks>net462;net8</TargetFrameworks>
<AssemblyName>Tests</AssemblyName>
<RootNamespace>DbUp.NewProvider.Tests</RootNamespace>
<RootNamespace>DbUp.Firebird.Tests</RootNamespace>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<!-- <ImplicitUsings>enable</ImplicitUsings> Can't use implict usings with net46 -->
<Nullable>enable</Nullable>
Expand All @@ -12,7 +12,7 @@
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\dbup-newprovider\dbup-newprovider.csproj" />
<ProjectReference Include="..\dbup-firebird\dbup-firebird.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" />
Expand Down
4 changes: 2 additions & 2 deletions src/dbup-newprovider.sln → src/dbup-firebird.sln
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dbup-newprovider", "dbup-newprovider\dbup-newprovider.csproj", "{2A7189BD-96CE-41CA-9100-E1B1DD10FF40}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dbup-firebird", "dbup-firebird\dbup-firebird.csproj", "{2A7189BD-96CE-41CA-9100-E1B1DD10FF40}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tests", "Tests\Tests.csproj", "{8CE634FE-6772-408E-9340-909F6218F8F7}"
EndProject
Expand All @@ -22,7 +22,7 @@ EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{77157734-01DA-4AA3-A15C-504013343B29}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
dbup-newprovider.sln.DotSettings = dbup-newprovider.sln.DotSettings
dbup-firebird.sln.DotSettings = dbup-firebird.sln.DotSettings
EndProjectSection
EndProject
Global
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Description>DbUp makes it easy to deploy and upgrade SQL Server databases. This package adds NewProvider support.</Description>
<Title>DbUp NewProvider Support</Title>
<Description>DbUp makes it easy to deploy and upgrade SQL Server databases. This package adds Firebird support.</Description>
<Title>DbUp Firebird Support</Title>
<TargetFrameworks>netstandard1.3;netstandard2.0;net35;net45</TargetFrameworks>
<AssemblyName>dbup-newprovider</AssemblyName>
<RootNamespace>DbUp.NewProvider</RootNamespace>
<AssemblyName>dbup-firebird</AssemblyName>
<RootNamespace>DbUp.Firebird</RootNamespace>
<AssemblyOriginatorKeyFile>../dbup.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
<RepositoryUrl>https://github.com/DbUp/dbup-newprovider.git</RepositoryUrl>
<Product>dbup_newprovider</Product>
<PackageId>dbup-newprovider</PackageId>
<RepositoryUrl>https://github.com/DbUp/dbup-firebird.git</RepositoryUrl>
<Product>dbup_firebird</Product>
<PackageId>dbup-firebird</PackageId>
<PackageIcon>dbup-icon.png</PackageIcon>
</PropertyGroup>

Expand Down

0 comments on commit b3866bf

Please sign in to comment.