Skip to content

Commit fbe9518

Browse files
authoredFeb 24, 2025··
Merge pull request #69 from ovh/release
Release
2 parents b19a8e4 + 2334860 commit fbe9518

File tree

3 files changed

+27
-5
lines changed

3 files changed

+27
-5
lines changed
 

‎.devcontainer/devcontainer.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
2+
// README at: https://github.com/devcontainers/templates/tree/main/src/dotnet
3+
{
4+
"name": "csharp-ovh",
5+
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6+
"image": "mcr.microsoft.com/devcontainers/dotnet:1-9.0-bookworm"
7+
// Features to add to the dev container. More info: https://containers.dev/features.
8+
// "features": {},
9+
// Use 'forwardPorts' to make a list of ports inside the container available locally.
10+
// "forwardPorts": [5000, 5001],
11+
// "portsAttributes": {
12+
// "5001": {
13+
// "protocol": "https"
14+
// }
15+
// }
16+
// Use 'postCreateCommand' to run commands after the container is created.
17+
// "postCreateCommand": "dotnet restore",
18+
// Configure tool-specific properties.
19+
// "customizations": {},
20+
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
21+
// "remoteUser": "root"
22+
}

‎.github/workflows/build-and-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717

1818
jobs:
1919
build-and-test:
20-
name: build-and-test-${{matrix.os}}
20+
name: build-and-test
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout Repo

‎csharp-ovh/csharp-ovh.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
<PropertyGroup>
44
<TargetFramework>net6.0</TargetFramework>
55
<AssemblyName>csharp-ovh</AssemblyName>
6-
<Title>OVH C# API Wrapper</Title>
7-
<PackageVersion>4.0.5</PackageVersion>
8-
<PackageDescription>A set of classes and helpers to make calls to OVH's APIs.</PackageDescription>
9-
<Authors>Luke Marlin;Julien Loir</Authors>
6+
<Title>OVHcloud C# API Wrapper</Title>
7+
<PackageVersion>4.0.6</PackageVersion>
8+
<PackageDescription>A set of classes and helpers to make calls to OVHcloud's APIs.</PackageDescription>
9+
<Authors>OVHcloud</Authors>
1010
<RepositoryUrl>https://github.com/ovh/csharp-ovh</RepositoryUrl>
1111
<RepositoryType>git</RepositoryType>
1212
<PackageLicenseFile>LICENSE</PackageLicenseFile>

0 commit comments

Comments
 (0)
Please sign in to comment.