Skip to content
Snippets Groups Projects
Commit 83d12eba authored by Petar Hristov's avatar Petar Hristov :speech_balloon:
Browse files

Fix: Migrated AssemblyInformation. Added .config folder to .gitignore. (coscine/issues#1334)

parent 658d7d8c
Branches Topic/1334-dotnet5migration
No related tags found
2 merge requests!9Product/1287 dotnet5 sharepoint,!7Topic/1334 dotnet5migration
{
"version": 1,
"isRoot": true,
"tools": {
"gitversion.tool": {
"version": "5.6.4",
"commands": [
"dotnet-gitversion"
]
},
"dotnet-version-cli": {
"version": "2.1.1",
"commands": [
"dotnet-version"
]
}
}
}
\ No newline at end of file
......@@ -268,3 +268,6 @@ __pycache__/
tools/*
!tools/packages.config
dist/
# Dotnet Tool Manifest
.config/*
......@@ -6,6 +6,15 @@
<TargetFrameworks>net5.0;net461</TargetFrameworks>
<Version>1.2.0</Version>
</PropertyGroup>
<PropertyGroup>
<Authors>RWTH Aachen University</Authors>
<Company>IT Center, RWTH Aachen University</Company>
<Copyright>2021 IT Center, RWTH Aachen University</Copyright>
<Description>Database.Helpers is a part of the Coscine group.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://git.rwth-aachen.de/coscine/backend/libraries/Database.Helpers</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Coscine.Configuration" Version="2.*-*" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.2" />
......
<?xml version="1.0"?>
<package >
<metadata>
<id>$id$</id>
<version>$version$</version>
<title>$title$</title>
<authors>rwth-aachen</authors>
<owners>rwth-aachen</owners>
<license type="expression">MIT</license>
<projectUrl>https://git.rwth-aachen.de/coscine/cs/database.helpers</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>$description$</description>
<copyright>$copyright$</copyright>
</metadata>
</package>
\ No newline at end of file
......@@ -32,7 +32,7 @@ namespace Coscine.Database.Helpers
}
}
public void CreateDatabse(string dbDatabase)
public void CreateDatabase(string dbDatabase)
{
var sqlCommandBuilder = new SqlCommandBuilder();
using (var connection = new SqlConnection(ConnectionSettings.GetConnectionString(false)))
......@@ -83,7 +83,7 @@ namespace Coscine.Database.Helpers
{
if (!DatabaseExists(dbDatabase))
{
CreateDatabse(dbDatabase);
CreateDatabase(dbDatabase);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment