Skip to content
Snippets Groups Projects
Commit f830e962 authored by Marcel Nellesen's avatar Marcel Nellesen
Browse files

Merge branch 'Product/1287-dotnet5Sharepoint' into 'Sprint/2021-03'

Product/1287 dotnet5 sharepoint

See merge request !25
parents 7c950893 021c0496
Branches Sprint/2021-03
Tags
2 merge requests!25Product/1287 dotnet5 sharepoint,!24Sprint/2021 03
{
"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__/ ...@@ -268,3 +268,6 @@ __pycache__/
tools/* tools/*
!tools/packages.config !tools/packages.config
dist/ dist/
# Dotnet Tool Manifest
.config/*
...@@ -6,14 +6,11 @@ ...@@ -6,14 +6,11 @@
<TargetFrameworks>net5.0;net461</TargetFrameworks> <TargetFrameworks>net5.0;net461</TargetFrameworks>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\configuration\Configuration.csproj"> <ProjectReference Include="..\configuration\Configuration.csproj" />
<Project>{97fc4a08-a089-4823-9aeb-d05b36be931d}</Project>
<Name>Configuration</Name>
</ProjectReference>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.5.0" /> <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
<PackageReference Include="NUnit" Version="3.13.0" /> <PackageReference Include="NUnit" Version="3.13.1" />
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" /> <PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
</ItemGroup> </ItemGroup>
</Project> </Project>
\ No newline at end of file
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by Cake.
// </auto-generated>
//------------------------------------------------------------------------------
using System.Reflection;
[assembly: AssemblyDescription("Configuration.Tests is a part of the CoScInE group.")]
[assembly: AssemblyCopyright("2021 IT Center, RWTH Aachen University")]
...@@ -3,9 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00 ...@@ -3,9 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16 # Visual Studio Version 16
VisualStudioVersion = 16.0.29009.5 VisualStudioVersion = 16.0.29009.5
MinimumVisualStudioVersion = 10.0.40219.1 MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Configuration", "configuration\Configuration.csproj", "{97FC4A08-A089-4823-9AEB-D05B36BE931D}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Configuration", "configuration\Configuration.csproj", "{97FC4A08-A089-4823-9AEB-D05B36BE931D}"
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Configuration.Tests", "configuration.Tests\Configuration.Tests.csproj", "{DC9FB8C0-CD6B-4C0B-8BA6-5C14668B7DA4}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Configuration.Tests", "configuration.Tests\Configuration.Tests.csproj", "{DC9FB8C0-CD6B-4C0B-8BA6-5C14668B7DA4}"
EndProject EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
......
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<OutputType>Library</OutputType> <OutputType>Library</OutputType>
<RootNamespace>Coscine.Configuration</RootNamespace> <RootNamespace>Coscine.Configuration</RootNamespace>
<AssemblyName>Coscine.Configuration</AssemblyName> <AssemblyName>Coscine.Configuration</AssemblyName>
<TargetFrameworks>net5.0;net461</TargetFrameworks> <TargetFrameworks>net5.0;net461</TargetFrameworks>
<Version>1.6.0</Version></PropertyGroup> <Version>1.6.0</Version>
</PropertyGroup>
<PropertyGroup> <PropertyGroup>
<SignAssembly>true</SignAssembly> <Authors>RWTH Aachen University</Authors>
<Company>IT Center, RWTH Aachen University</Company>
<Copyright>2021 IT Center, RWTH Aachen University</Copyright>
<Description>Configuration is a part of the Coscine group.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://git.rwth-aachen.de/coscine/backend/libraries/Configuration</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>Coscine.Configuration.Key.snk</AssemblyOriginatorKeyFile> <AssemblyOriginatorKeyFile>Coscine.Configuration.Key.snk</AssemblyOriginatorKeyFile>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
......
<?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/configuration</projectUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<description>$description$</description>
<copyright>$copyright$</copyright>
</metadata>
</package>
\ No newline at end of file
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by Cake.
// </auto-generated>
//------------------------------------------------------------------------------
using System.Reflection;
[assembly: AssemblyDescription("Configuration is a part of the CoScInE group.")]
[assembly: AssemblyCopyright("2021 IT Center, RWTH Aachen University")]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment