Skip to content

Commit

Permalink
Update subdomules & YAML pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
emmanuelbenitez committed Jan 31, 2021
1 parent fa95646 commit 83fe45c
Show file tree
Hide file tree
Showing 15 changed files with 16 additions and 49 deletions.
2 changes: 1 addition & 1 deletion .resources
2 changes: 1 addition & 1 deletion .settings
2 changes: 1 addition & 1 deletion BigSolution.Common.sln
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Common.Tests", "src\Common.
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "build", "build", "{AB4F2125-F547-4E99-A59F-93989F4F1725}"
ProjectSection(SolutionItems) = preProject
azure-devops-prerelease.yml = azure-devops-prerelease.yml
azure-devops-nightly.yml = azure-devops-nightly.yml
azure-devops-release.yml = azure-devops-release.yml
azure-pipelines-ci.yml = azure-pipelines-ci.yml
src\Directory.Build.props = src\Directory.Build.props
Expand Down
2 changes: 1 addition & 1 deletion azure-devops-prerelease.yml → azure-devops-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ extends:
Major: ${{ variables.versionMajor }}
Minor: ${{ variables.versionMinor }}
Patch: ${{ variables.versionPatch }}
IsPreRelease: true
PreRelease: "preview"
3 changes: 1 addition & 2 deletions azure-devops-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,4 @@ extends:
ProjectOrSolutionPath: "$(Build.SourcesDirectory)/BigSolution.Common.sln"
Major: ${{ variables.versionMajor }}
Minor: ${{ variables.versionMinor }}
Patch: ${{ variables.versionPatch }}
IsPreRelease: false
Patch: ${{ variables.versionPatch }}
6 changes: 0 additions & 6 deletions azure-pipelines-ci.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
trigger:
- master

variables:
- template: version-variables.yml

resources:
repositories:
- repository: pipelineTemplateRepository
Expand All @@ -15,6 +12,3 @@ extends:
template: Pipelines/dotnet-nuget/continuous-integration.yml@pipelineTemplateRepository
parameters:
ProjectOrSolutionPath: "$(Build.SourcesDirectory)/BigSolution.Common.sln"
Major: ${{ variables.versionMajor }}
Minor: ${{ variables.versionMinor }}
Patch: ${{ variables.versionPatch }}
Binary file removed build/BigSolution.public.snk
Binary file not shown.
25 changes: 0 additions & 25 deletions build/build.ps1

This file was deleted.

3 changes: 0 additions & 3 deletions build/test.ps1

This file was deleted.

8 changes: 4 additions & 4 deletions src/Common.Tests/Common.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="coverlet.msbuild" Version="2.8.0">
<PackageReference Include="coverlet.msbuild" Version="3.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="FluentAssertions" Version="5.10.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.4.0" />
<PackageReference Include="FluentAssertions" Version="5.10.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
<PackageReference Include="xunit.core" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion src/Common.Tests/TypeExtensionsFixture.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#region Copyright & License

// Copyright © 2020 - 2020 Emmanuel Benitez
// Copyright © 2020 - 2021 Emmanuel Benitez
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion src/Common/Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

<ItemGroup>
<PackageReference Include="BigSolution.Infra.Validation" Version="2.0.0-preview20239.0" />
<PackageReference Include="JetBrains.Annotations" Version="2020.1.0" />
<PackageReference Include="JetBrains.Annotations" Version="2020.3.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
2 changes: 1 addition & 1 deletion src/Common/TypeExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#region Copyright & License

// Copyright © 2020 - 2020 Emmanuel Benitez
// Copyright © 2020 - 2021 Emmanuel Benitez
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
5 changes: 3 additions & 2 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@
-->
<Project>
<PropertyGroup>
<Major Condition=" '$(Major)' == '' ">1</Major>
<Major Condition=" '$(Major)' == '' ">2</Major>
<Minor Condition=" '$(Minor)' == '' ">0</Minor>
<Patch Condition=" '$(Patch)' == '' ">1</Patch>
<Patch Condition=" '$(Patch)' == '' ">0</Patch>
</PropertyGroup>

<Import Project="$(MSBuildThisFileDirectory)../.resources/Directory.Build.props" />
<Import Project="$(MSBuildThisFileDirectory)../.settings/Directory.Build.props" />
</Project>
1 change: 1 addition & 0 deletions src/Directory.Build.targets
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@
-->
<Project>
<Import Project="$(MSBuildThisFileDirectory)../.resources/Directory.Build.targets" />
<Import Project="$(MSBuildThisFileDirectory)../.settings/Directory.Build.targets" />
</Project>

0 comments on commit 83fe45c

Please sign in to comment.