Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • gitkeep
  • Sprint/2022-01
  • dev protected
  • Sprint/2020-10
  • Sprint/2020-09
  • Product/701-realRds
  • Hotfix/774-fixAnalyticsLogs
  • Topic/787-realRds
  • Hotfix/784-uploadBlock
  • Sprint/2020-07
  • Product/772-s3ResourceUrl
  • Topic/776-s3ResourceUrl
  • Sprint/2020-05
  • Product/639-readableLogs
  • Hotfix/737-decapitalizeConfigKeys
  • Topic/671-readableLogs
  • Sprint/2020-04
  • Product/654-filesView
  • Topic/664-filesView
  • v1.6.1
  • v1.6.0
  • v1.5.0
  • v1.4.1
  • v1.4.0
  • v1.3.0
  • v1.2.1
  • v1.2.0
  • v1.1.0
29 results

build.sh

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    KPI Generator.csproj 1.05 KiB
    <Project Sdk="Microsoft.NET.Sdk">
    
    	<PropertyGroup>
    		<OutputType>Exe</OutputType>
    		<TargetFramework>net6.0</TargetFramework>
    		<RootNamespace>Coscine.KpiGenerator</RootNamespace>
    		<AssemblyName>Coscine.KpiGenerator</AssemblyName>
    		<ImplicitUsings>enable</ImplicitUsings>
    		<Nullable>enable</Nullable>
    		<Version>0.1.5</Version>
    	</PropertyGroup>
    
    	<PropertyGroup>
    		<Authors>RWTH Aachen University</Authors>
    		<Company>IT Center, RWTH Aachen University</Company>
    		<Copyright>©2022 IT Center, RWTH Aachen University</Copyright>
    		<Description>KPI Generator is a part of the Coscine group.</Description>
    	</PropertyGroup>
    
    	<ItemGroup>
    		<PackageReference Include="CommandLineParser" Version="2.9.1" />
    		<PackageReference Include="Coscine.ApiCommons" Version="2.*-*" />
    		<PackageReference Include="Coscine.Database" Version="2.*-*" />
    		<PackageReference Include="Coscine.Metadata" Version="2.*-*" />
    		<PackageReference Include="Coscine.ResourceTypes" Version="1.*-*" />
    		<PackageReference Include="GitLabApiClient" Version="1.8.1-beta.5" />
    	</ItemGroup>
    </Project>