Skip to content
Snippets Groups Projects
Select Git revision
  • dev protected
  • master default protected
  • Issue/3003-stsInstitute
  • gitkeep
  • Issue/2449-GuidPidSlugToProjectSettings
  • Issue/2309-docs
  • Fix/xxxx-updateDependencies
  • Issue/2364-testingKpiParser
  • Issue/2287-guestRole
  • Test/xxxx-pipelineTriggers
  • Issue/2102-gitLabResTypeRCV
  • Issue/2278-gitlabToS
  • Issue/2101-gitLabResTypeUi
  • Issue/1788-extractionCronjob
  • Issue/2183-kpiGeneratorResource
  • Issue/2222-resourceDateCreated
  • Issue/2221-projectDateCreated
  • Issue/1321-pidEnquiryOverhaul
  • Issue/1999-gitlabResourcesLib
  • Issue/1951-quotaImplementation
  • v2.22.0
  • v2.20.0
  • v2.19.1
  • v2.19.0
  • v2.18.0
  • v2.17.0
  • v2.16.2
  • v2.16.1
  • v2.16.0
  • v2.15.0
  • v2.14.0
  • v2.13.0
  • v2.12.1
  • v2.12.0
  • v2.11.1
  • v2.11.0
  • v2.10.1
  • v2.10.0
  • v2.9.1
  • v2.9.0
40 results

Database.csproj

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Database.csproj 2.24 KiB
    <Project Sdk="Microsoft.NET.Sdk">
    	<PropertyGroup>
    		<OutputType>Library</OutputType>
    		<RootNamespace>Coscine.Database</RootNamespace>
    		<AssemblyName>Coscine.Database</AssemblyName>
    		<TargetFrameworks>net6.0;net461</TargetFrameworks>
    		<Version>2.13.0</Version>
    	</PropertyGroup>
    	<PropertyGroup>
    		<Authors>RWTH Aachen University</Authors>
    		<Company>IT Center, RWTH Aachen University</Company>
    		<Copyright>2022 IT Center, RWTH Aachen University</Copyright>
    		<Description>Database is a part of the Coscine group.</Description>
    		<PackageLicenseExpression>MIT</PackageLicenseExpression>
    		<PackageProjectUrl>https://git.rwth-aachen.de/coscine/backend/libraries/database</PackageProjectUrl>
    		<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
    	</PropertyGroup>
    	<PropertyGroup>
    		<SignAssembly>true</SignAssembly>
    		<AssemblyOriginatorKeyFile>Coscine.Database.Key.snk</AssemblyOriginatorKeyFile>
    	</PropertyGroup>
    	<ItemGroup>
    		<None Include="Coscine.Database.Key.snk" />
    		<Reference Include="System.Web" Condition="'$(TargetFramework)' == 'net461'" />
    	</ItemGroup>
    	<ItemGroup>
    		<Compile Include="..\Scaffolding\DataModel\*.*">
    			<Link>DataModel\%(Filename)%(Extension)</Link>
    		</Compile>
    	</ItemGroup>
    	<ItemGroup>
    		<PackageReference Include="Coscine.Configuration" Version="2.*-*" />
    		<PackageReference Include="LinqKit" Version="1.1.23" />
    		<PackageReference Include="Inflector.NetStandard" Version="1.2.2" />
    		<!-- Note: use newest Microsoft.EntityFrameworkCore Version for net6.0 -->
    		<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.4" Condition="'$(TargetFramework)' == 'net6.0'" PrivateAssets="all" />
    		<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.4" Condition="'$(TargetFramework)' == 'net6.0'" />
    		<!-- Note: use Microsoft.EntityFrameworkCore Version 3.x.x for compatibility with net461 -->
    		<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="3.1.12" Condition="'$(TargetFramework)' == 'net461'" PrivateAssets="all" />
    		<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.1.12" Condition="'$(TargetFramework)' == 'net461'" />
    	</ItemGroup>
    	<PropertyGroup>
    		<LangVersion>Preview</LangVersion>
    	</PropertyGroup>
    </Project>