Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
ApiClient
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Coscine
backend
libraries
ApiClient
Merge requests
!1
New: .NET Coscine API Client
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
New: .NET Coscine API Client
Issue/2666-adminCronjobs
into
dev
Overview
0
Commits
14
Pipelines
14
Changes
247+
Merged
Benedikt Heinrichs
requested to merge
Issue/2666-adminCronjobs
into
dev
1 year ago
Overview
0
Commits
14
Pipelines
14
Changes
247
Expand
coscine/issues#2666
0
0
Merge request reports
Compare
dev
version 13
b7f510c2
1 year ago
version 12
8ba84cba
1 year ago
version 11
a9430200
1 year ago
version 10
ba4e993e
1 year ago
version 9
ec76dad3
1 year ago
version 8
5ea230d3
1 year ago
version 7
e0ae1ab0
1 year ago
version 6
46e005bb
1 year ago
version 5
2b7dda3c
1 year ago
version 4
f9a16531
1 year ago
version 3
d2de509b
1 year ago
version 2
34f41fdf
1 year ago
version 1
102eb13d
1 year ago
dev (base)
and
latest version
latest version
1f302f7e
14 commits,
1 year ago
version 13
b7f510c2
13 commits,
1 year ago
version 12
8ba84cba
12 commits,
1 year ago
version 11
a9430200
11 commits,
1 year ago
version 10
ba4e993e
10 commits,
1 year ago
version 9
ec76dad3
9 commits,
1 year ago
version 8
5ea230d3
8 commits,
1 year ago
version 7
e0ae1ab0
7 commits,
1 year ago
version 6
46e005bb
6 commits,
1 year ago
version 5
2b7dda3c
5 commits,
1 year ago
version 4
f9a16531
4 commits,
1 year ago
version 3
d2de509b
3 commits,
1 year ago
version 2
34f41fdf
2 commits,
1 year ago
version 1
102eb13d
1 commit,
1 year ago
247+ files
+
49767
−
71
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
247+
Search (e.g. *.vue) (Ctrl+P)
Some changes are not shown.
For a faster browsing experience, only
247 of 247+
files are shown. Download one of the files below to see all changes.
Plain diff
Patches
src/ApiClient/ApiClient.csproj
0 → 100644
+
32
−
0
Options
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<RootNamespace>Coscine.ApiClient</RootNamespace>
<AssemblyName>Coscine.ApiClient</AssemblyName>
<TargetFramework>net7.0</TargetFramework>
<Version>0.0.1</Version>
</PropertyGroup>
<PropertyGroup>
<Authors>RWTH Aachen University</Authors>
<Company>IT Center, RWTH Aachen University</Company>
<Copyright>2023 IT Center, RWTH Aachen University</Copyright>
<Description>ApiClient is a part of the Coscine group.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://git.rwth-aachen.de/coscine/backend/libraries/ApiClient</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="7.0.4" />
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="7.0.2" />
<PackageReference Include="Winton.Extensions.Configuration.Consul" Version="3.3.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Org.OpenAPITools\Org.OpenAPITools.csproj" />
</ItemGroup>
</Project>
\ No newline at end of file
Loading