Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d6d746c1ed | |||
| 50a8dc6d09 | |||
| 6ad3faa922 | |||
| 64dd38a2a3 | |||
| e748ba7138 | |||
| 62ce794e8b | |||
| 0f6c3a5332 |
@@ -1,4 +1,4 @@
|
||||
<Project Sdk="Dalamud.NET.Sdk/12.0.2">
|
||||
<Project Sdk="Dalamud.NET.Sdk/13.0.0">
|
||||
|
||||
<PropertyGroup>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
@@ -14,7 +14,7 @@
|
||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||
<RepositoryUrl>https://github.com/Pilzinsel64/Pilz.Dalamud</RepositoryUrl>
|
||||
<RepositoryType>git</RepositoryType>
|
||||
<Version>1.0.2</Version>
|
||||
<Version>1.0.3</Version>
|
||||
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
||||
</PropertyGroup>
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ Install the latest version of `Pilz.Dalamud` via NuGet Package Manager or NuGet
|
||||
https://www.nuget.org/packages/Pilz.Dalamud
|
||||
|
||||
Or add the alternative package source for slightly quicker updates:\
|
||||
`<add key="Pilz.Dalamud" value="https://git.pilzinsel64.de/api/v4/projects/8/packages/nuget/index.json" />`\
|
||||
`<add key="Pilz" value="https://git.pilzinsel64.de/api/packages/Pilz.NET/nuget/index.json" />`\
|
||||
|
||||
## Get started
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
@echo off
|
||||
|
||||
set sourceP="https://git.pilzinsel64.de/api/v4/projects/25/packages/nuget/index.json"
|
||||
set apikeyP=%GitLab_git_pilzinsel64_de%
|
||||
set sourceP="https://git.pilzinsel64.de/api/packages/Pilz.NET/nuget/index.json"
|
||||
set apikeyP=%Gitea_git_pilzinsel64_de%
|
||||
|
||||
set sourceN="https://api.nuget.org/v3/index.json"
|
||||
set apikeyN=%NuGet_ApiKey%
|
||||
13
deploy-nugets.sh
Normal file
13
deploy-nugets.sh
Normal file
@@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
sourceP="https://git.pilzinsel64.de/api/packages/Pilz.NET/nuget/index.json"
|
||||
apikeyP="$Gitea_git_pilzinsel64_de"
|
||||
|
||||
sourceN="https://api.nuget.org/v3/index.json"
|
||||
apikeyN="$NuGet_ApiKey"
|
||||
|
||||
for pkg in "$@"; do
|
||||
dotnet nuget push "$pkg" --source "$sourceP" --api-key "$apikeyP" --skip-duplicate
|
||||
dotnet nuget push "$pkg" --source "$sourceN" --api-key "$apikeyN" --skip-duplicate
|
||||
done
|
||||
@@ -1,6 +0,0 @@
|
||||
{
|
||||
"version": 1,
|
||||
"dependencies": {
|
||||
"net7.0-windows7.0": {}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user