mirror of
https://github.com/ppy/osu.git
synced 2025-01-07 21:23:22 +08:00
Merge pull request #5992 from peppy/osu-via-nuget
Add support for publishing osu.Game via nuget
This commit is contained in:
commit
01c463a321
@ -2,7 +2,5 @@ clone_depth: 1
|
|||||||
version: '{branch}-{build}'
|
version: '{branch}-{build}'
|
||||||
image: Previous Visual Studio 2017
|
image: Previous Visual Studio 2017
|
||||||
test: off
|
test: off
|
||||||
install:
|
|
||||||
- cmd: git submodule update --init --recursive --depth=5
|
|
||||||
build_script:
|
build_script:
|
||||||
- cmd: PowerShell -Version 2.0 .\build.ps1
|
- cmd: PowerShell -Version 2.0 .\build.ps1
|
||||||
|
10
appveyor_deploy.yml
Normal file
10
appveyor_deploy.yml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
clone_depth: 1
|
||||||
|
version: '{build}'
|
||||||
|
image: Previous Visual Studio 2017
|
||||||
|
test: off
|
||||||
|
skip_non_tags: true
|
||||||
|
build_script:
|
||||||
|
- cmd: PowerShell -Version 2.0 .\build.ps1
|
||||||
|
deploy:
|
||||||
|
- provider: Environment
|
||||||
|
name: nuget
|
@ -6,6 +6,17 @@
|
|||||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Label="Nuget">
|
||||||
|
<Title>osu!</Title>
|
||||||
|
<PackageId>ppy.osu.Game</PackageId>
|
||||||
|
<Authors>ppy Pty Ltd</Authors>
|
||||||
|
<PackageLicenseUrl>https://github.com/ppy/osu/blob/master/LICENCE.md</PackageLicenseUrl>
|
||||||
|
<PackageProjectUrl>https://github.com/ppy/osu</PackageProjectUrl>
|
||||||
|
<RepositoryUrl>https://github.com/ppy/osu</RepositoryUrl>
|
||||||
|
<PackageReleaseNotes>Automated release.</PackageReleaseNotes>
|
||||||
|
<copyright>Copyright (c) 2019 ppy Pty Ltd</copyright>
|
||||||
|
<PackageTags>osu game</PackageTags>
|
||||||
|
</PropertyGroup>
|
||||||
<ItemGroup Label="Service">
|
<ItemGroup Label="Service">
|
||||||
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
|
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
Loading…
Reference in New Issue
Block a user