mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 20:58:34 +01:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
330ef02054
2 changed files with 19 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
# MLEM
|
# MLEM
|
||||||
(M)LEM (L)ibrary by (E)llpeck for (M)onoGame
|
(M)LEM (L)ibrary by (E)llpeck for (M)onoGame
|
||||||
|
|
||||||
Get it at https://www.nuget.org/packages?q=mlem
|
Get it at https://www.nuget.org/packages?q=mlem or use the prerelease feed at https://dev.azure.com/Ellpeck/Public/_packaging
|
||||||
|
|
||||||
To talk about MLEM and suggest features or report issues, join the Discord at https://ellpeck.de/discord
|
To talk about MLEM and suggest features or report issues, join the Discord at https://ellpeck.de/discord
|
||||||
|
|
|
@ -9,6 +9,8 @@ trigger:
|
||||||
pool:
|
pool:
|
||||||
vmImage: 'windows-latest'
|
vmImage: 'windows-latest'
|
||||||
|
|
||||||
|
name: $(BuildDefinitionName)_$(Year:yyyy).$(Month).$(DayOfMonth)$(Rev:.r)
|
||||||
|
|
||||||
variables:
|
variables:
|
||||||
solution: '**/*.sln'
|
solution: '**/*.sln'
|
||||||
buildPlatform: 'Any CPU'
|
buildPlatform: 'Any CPU'
|
||||||
|
@ -27,4 +29,18 @@ steps:
|
||||||
projects: |
|
projects: |
|
||||||
**/MLEM*.csproj
|
**/MLEM*.csproj
|
||||||
**/Demos.csproj
|
**/Demos.csproj
|
||||||
**/Demos.DesktopGL.csproj
|
**/Demos.DesktopGL.csproj
|
||||||
|
|
||||||
|
- task: DotNetCoreCLI@2
|
||||||
|
inputs:
|
||||||
|
command: 'pack'
|
||||||
|
packagesToPack: '**/MLEM*.csproj'
|
||||||
|
versioningScheme: 'byBuildNumber'
|
||||||
|
|
||||||
|
- task: NuGetCommand@2
|
||||||
|
inputs:
|
||||||
|
command: 'push'
|
||||||
|
packagesToPush: '$(Build.ArtifactStagingDirectory)/**/*.nupkg;!$(Build.ArtifactStagingDirectory)/**/*.symbols.nupkg'
|
||||||
|
nuGetFeedType: 'internal'
|
||||||
|
publishVstsFeed: '706ac046-8929-4e12-a3fc-31c6da632843/1e458b61-aefe-4164-82ca-8a63d1ccc611'
|
||||||
|
allowPackageConflicts: true
|
||||||
|
|
Loading…
Reference in a new issue