Skip to content

Commit

Permalink
Merge pull request #10 from tryphotino/debug
Browse files Browse the repository at this point in the history
v 4.0
  • Loading branch information
MikeYeager authored Jan 23, 2025
2 parents 3fd19ed + 8b86a13 commit 690ca08
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 19 deletions.
4 changes: 2 additions & 2 deletions Photino.NET.Server.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30717.126
# Visual Studio Version 17
VisualStudioVersion = 17.12.35707.178 d17.12
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Photino.NET.Server", "Photino.NET.Server\Photino.NET.Server.csproj", "{BB5C5BF0-D891-4005-BEC2-A654FCF02D5B}"
EndProject
Expand Down
2 changes: 1 addition & 1 deletion Photino.NET.Server/Photino.NET.Server.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net6.0</TargetFramework>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<IsPackable>true</IsPackable>
</PropertyGroup>

Expand Down
15 changes: 2 additions & 13 deletions azure-pipelines-photino.net.server-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,32 +18,21 @@ jobs:

steps:
- task: UseDotNet@2
displayName: 'Use .NET Core sdk'
displayName: 'Use .NET 9 sdk'
inputs:
packageType: sdk
version: 8.0.x
version: 9.0.x
installationPath: $(Agent.ToolsDirectory)/dotnet

- task: NuGetAuthenticate@1
displayName: 'NuGet Authenticate'

#- task: CmdLine@2
# displayName: 'Build Photino.NET.Server'
# inputs:
# script: 'dotnet build Photino.NET.Server/Photino.NET.Server.csproj -c $(buildConfiguration)'

#Build and Create NuGet package
- task: CmdLine@2
displayName: 'Build and Create NuGet package'
inputs:
script: 'dotnet pack Photino.NET.Server/Photino.NET.Server.csproj -c $(buildConfiguration) --include-symbols /p:Version=$(versionprefix)-dev-$(Build.BuildNumber) /p:PackageVersion=$(versionprefix)-dev-$(Build.BuildNumber)'

#Create NuGet package
#- task: CmdLine@2
# displayName: 'Create NuGet package'
# inputs:
# script: 'nuget.exe pack Photino.NET.Server/Photino.NET.Server.nuspec -Version $(versionprefix)-$(Build.BuildNumber) -NonInteractive -Properties version=$(versionprefix)-$(Build.BuildNumber)'

#Publish NuGet package to Artifacts
- task: NuGetCommand@2
displayName: 'NuGet push'
Expand Down
6 changes: 3 additions & 3 deletions azure-pipelines-photino.net.server-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ trigger:
- manual

variables:
major: 3
major: 4
minor: 0
patch: $[counter(variables['minor'], 0)] #this will reset when we bump minor
buildConfiguration: "Release"
Expand All @@ -18,10 +18,10 @@ jobs:

steps:
- task: UseDotNet@2
displayName: "Use .NET Core sdk"
displayName: "Use .NET 9 sdk"
inputs:
packageType: sdk
version: 8.0.x
version: 9.0.x
installationPath: $(Agent.ToolsDirectory)/dotnet

#Build and Create NuGet package
Expand Down

0 comments on commit 690ca08

Please sign in to comment.