1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-19 07:31:22 +02:00

fixed the font, remove azure pipelines

This commit is contained in:
Ellpeck 2020-02-17 17:43:48 +01:00
parent 2e8e17b373
commit 055eba7a34
8 changed files with 4 additions and 50 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -11,7 +11,7 @@ with.
<!--
Modify this string to change the font that will be imported.
-->
<FontName>Arial</FontName>
<FontName>CAYETANO.ttf</FontName>
<!--
Size is a float value, measured in points. Modify this value to change

View file

@ -11,7 +11,7 @@ with.
<!--
Modify this string to change the font that will be imported.
-->
<FontName>Arial Bold</FontName>
<FontName>CAYTANOB</FontName>
<!--
Size is a float value, measured in points. Modify this value to change

View file

@ -11,7 +11,7 @@ with.
<!--
Modify this string to change the font that will be imported.
-->
<FontName>Arial Italic</FontName>
<FontName>CAYETANI</FontName>
<!--
Size is a float value, measured in points. Modify this value to change

View file

@ -1,6 +1,6 @@
# MLEM
(M)LEM (L)ibrary by (E)llpeck for (M)onoGame
Get it at https://www.nuget.org/packages?q=mlem or use the prerelease feed at https://dev.azure.com/Ellpeck/Public/_packaging
Get it at https://www.nuget.org/packages?q=mlem
To talk about MLEM and suggest features or report issues, join the Discord at https://ellpeck.de/discord

View file

@ -1,46 +0,0 @@
# .NET Desktop
# Build and run tests for .NET Desktop or Windows classic desktop solutions.
# Add steps that publish symbols, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net
trigger:
- master
pool:
vmImage: 'windows-latest'
name: $(BuildDefinitionName)_$(Year:yyyy).$(Month).$(DayOfMonth)$(Rev:.r)
variables:
solution: '**/*.sln'
buildPlatform: 'Any CPU'
buildConfiguration: 'Release'
steps:
- task: NuGetToolInstaller@1
- task: NuGetCommand@2
inputs:
restoreSolution: '$(solution)'
- task: DotNetCoreCLI@2
inputs:
command: 'build'
projects: |
**/MLEM*.csproj
**/Demos.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