Skip to content

Commit

Permalink
Merge pull request #42 from ricaun-io/develop
Browse files Browse the repository at this point in the history
Version 1.3.0
  • Loading branch information
ricaun authored Jun 15, 2022
2 parents 62ee603 + 8c72792 commit ac3474e
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 35 deletions.
16 changes: 2 additions & 14 deletions .github/workflows/Develop.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,5 @@
# ------------------------------------------------------------------------------
# <auto-generated>
#
# This code was generated.
#
# - To turn off auto-generation set:
#
# [GitHubActions (AutoGenerate = false)]
#
# - To trigger manual generation invoke:
#
# nuke --generate-configuration GitHubActions_Develop --host GitHubActions
#
# </auto-generated>
# Develop.yml
# ------------------------------------------------------------------------------

name: Develop
Expand All @@ -35,7 +23,7 @@ jobs:
- name: NuGet Setup
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
dotnet-version: 6.0.x
- name: "NuGet Add Source Organization"
run: if ("${{ secrets.ORGANIZATION_SOURCE_PACKAGE_PASSWORD }}" -ne "") { dotnet nuget add source --username ${{ secrets.ORGANIZATION_SOURCE_PACKAGE_USERNAME }} --password ${{ secrets.ORGANIZATION_SOURCE_PACKAGE_PASSWORD }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/${{github.repository_owner}}/index.json" }

Expand Down
16 changes: 2 additions & 14 deletions .github/workflows/Publish.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,5 @@
# ------------------------------------------------------------------------------
# <auto-generated>
#
# This code was generated.
#
# - To turn off auto-generation set:
#
# [GitHubActions (AutoGenerate = false)]
#
# - To trigger manual generation invoke:
#
# nuke --generate-configuration GitHubActions_Publish --host GitHubActions
#
# </auto-generated>
# Publish.xyml
# ------------------------------------------------------------------------------

name: Publish
Expand All @@ -32,7 +20,7 @@ jobs:
- name: NuGet Setup
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
dotnet-version: 6.0.x
- name: "NuGet Add Source Organization"
run: if ("${{ secrets.ORGANIZATION_SOURCE_PACKAGE_PASSWORD }}" -ne "") { dotnet nuget add source --username ${{ secrets.ORGANIZATION_SOURCE_PACKAGE_USERNAME }} --password ${{ secrets.ORGANIZATION_SOURCE_PACKAGE_PASSWORD }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/${{github.repository_owner}}/index.json" }

Expand Down
1 change: 1 addition & 0 deletions Build/.nuke/build.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"AppVeyor",
"AzurePipelines",
"Bamboo",
"Bitbucket",
"Bitrise",
"GitHubActions",
"GitLab",
Expand Down
2 changes: 0 additions & 2 deletions Build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
using ricaun.Nuke.Components;

#if !PUBLISH_ONLY_REVIT
[CheckBuildProjectConfigurations]
class Build : NukeBuild, IPublishPack, IRevitPackageBuilder
{
string IHazPackageBuilderProject.Name => "Example";
Expand All @@ -16,7 +15,6 @@ class Build : NukeBuild, IPublishPack, IRevitPackageBuilder
/// <summary>
/// Create IPublishRevit
/// </summary>
[CheckBuildProjectConfigurations]
class Build : NukeBuild, IPublishRevit
{
private const string RevitProjectName = "RevitAddin.PackageBuilder.Example";
Expand Down
2 changes: 1 addition & 1 deletion Build/Build.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace></RootNamespace>
<NoWarn>CS0649;CS0169</NoWarn>
<NukeRootDirectory>.</NukeRootDirectory>
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [1.3.0] / 2022-06-14
### Update
- Update ricaun.Nuke
- Update to Visual Studio 2022 - net6.0

## [1.2.6] / 2022-05-23
### Added
- Add `HasRevitVersion` on `RevitExtension`
Expand Down Expand Up @@ -180,6 +185,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- First Release

[vNext]: ../../compare/1.0.0...HEAD
[1.3.0]: ../../compare/1.2.6...1.3.0
[1.2.6]: ../../compare/1.2.5...1.2.6
[1.2.5]: ../../compare/1.2.4...1.2.5
[1.2.4]: ../../compare/1.2.3...1.2.4
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This package is to simplify the build automation system using to RevitAddin Appl
- [InnoSetup.ScriptBuilder](https://www.nuget.org/packages/InnoSetup.ScriptBuilder/)

[![Revit 2017](https://img.shields.io/badge/Revit-2017+-blue.svg)](../..)
[![Visual Studio 2019](https://img.shields.io/badge/Visual%20Studio%202019-16.11.7+-blue)](../..)
[![Visual Studio 2022](https://img.shields.io/badge/Visual%20Studio-2022-blue)](../..)
[![Nuke](https://img.shields.io/badge/Nuke-Build-blue)](https://nuke.build/)
[![License MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
[![Publish](../../actions/workflows/Publish.yml/badge.svg)](../../actions)
Expand All @@ -21,7 +21,6 @@ using Nuke.Common.Execution;
using ricaun.Nuke;
using ricaun.Nuke.Components;

[CheckBuildProjectConfigurations]
class Build : NukeBuild, IPublishRevit
{
// string IHazRevitPackageBuilder.Application => "Revit.App";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@

<PropertyGroup>
<PackageId>RevitAddin.PackageBuilder.Example</PackageId>
<Version>1.2.6</Version>
<Version>1.3.0</Version>
<ProjectGuid>{d2797a34-4696-490d-a97a-c17afb5f0225}</ProjectGuid>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<PropertyGroup>
<PackageId>ricaun.Nuke.PackageBuilder</PackageId>
<Version>1.2.6</Version>
<Version>1.3.0</Version>
</PropertyGroup>

<PropertyGroup>
Expand Down

0 comments on commit ac3474e

Please sign in to comment.