Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump version of Microsoft.NETFramework.ReferenceAssemblies package. #26

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions .github/workflows/Build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
on:
push:
branches:
- main
- rel/*
pull_request:
branches:
- main
- rel/*

jobs:
build:
runs-on: windows-latest

env:
BuildConfiguration: Release
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true

steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0

- uses: actions/setup-dotnet@v3

- run: dotnet tool restore

- run: dotnet nbgv cloud

- uses: nuget/setup-nuget@v1

- run: dotnet pack dirs.proj

- run: >-
dotnet nuget add source
--username aetos382
--password ${{ secrets.GITHUB_TOKEN }}
--store-password-in-clear-text
--name github
"https://nuget.pkg.github.com/aetos382/index.json"

- run: >-
dotnet nuget push
--source github
packages\*.nupkg
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"dotnet.defaultSolution": "DotNet.ReproducibleBuilds.sln"
}
2 changes: 1 addition & 1 deletion src/DotNet.ReproducibleBuilds.Isolated/Sdk/Sdk.targets
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
and
'$(EnsureNETFrameworkReferenceAssembliesProvided)' != 'false'">
<PropertyGroup>
<NETFrameworkReferenceAssembliesVersion>1.0.2</NETFrameworkReferenceAssembliesVersion>
<NETFrameworkReferenceAssembliesVersion>1.0.3</NETFrameworkReferenceAssembliesVersion>

<CentralPackageVersionManagementEnabled>false</CentralPackageVersionManagementEnabled>
<CentralPackageVersionManagementEnabled Condition="'$(CentralPackageVersionsFileImported)' == 'true' AND '$(ManagePackageVersionsCentrally)' == 'true'">true</CentralPackageVersionManagementEnabled>
Expand Down