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

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

parent 30f05158
No related branches found
No related tags found
2 merge requests!18Product/1287 dotnet5 sharepoint,!16Topic/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
...@@ -10,6 +10,9 @@ ...@@ -10,6 +10,9 @@
# User-specific files (MonoDevelop/Xamarin Studio) # User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs *.userprefs
# Database connection for t4 class generation from database
**/*.generated.cs
# Build results # Build results
[Dd]ebug/ [Dd]ebug/
[Dd]ebugPublic/ [Dd]ebugPublic/
...@@ -262,5 +265,9 @@ __pycache__/ ...@@ -262,5 +265,9 @@ __pycache__/
*.pyc *.pyc
#cake #cake
tools/ tools/*
dist/ !tools/packages.config
\ No newline at end of file dist/
# Dotnet Tool Manifest
.config/*
...@@ -6,6 +6,15 @@ ...@@ -6,6 +6,15 @@
<TargetFrameworks>net5.0;net461</TargetFrameworks> <TargetFrameworks>net5.0;net461</TargetFrameworks>
<Version>1.3.0</Version> <Version>1.3.0</Version>
</PropertyGroup> </PropertyGroup>
<PropertyGroup>
<Authors>RWTH Aachen University</Authors>
<Company>IT Center, RWTH Aachen University</Company>
<Copyright>2021 IT Center, RWTH Aachen University</Copyright>
<Description>Logging is a part of the Coscine group.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://git.rwth-aachen.de/coscine/backend/libraries/Logging</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
</PropertyGroup>
<PropertyGroup> <PropertyGroup>
<SignAssembly>true</SignAssembly> <SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>Coscine.Logging.snk</AssemblyOriginatorKeyFile> <AssemblyOriginatorKeyFile>Coscine.Logging.snk</AssemblyOriginatorKeyFile>
......
<?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/logging</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>$description$</description>
<copyright>$copyright$</copyright>
</metadata>
</package>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment