Skip to content

Commit

Permalink
Fixed Confix.Nuke
Browse files Browse the repository at this point in the history
  • Loading branch information
PascalSenn committed Aug 11, 2023
1 parent 9e9538a commit 5f15347
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Confix.Tool.Release

on:
release:
types: [published]
types: [ published ]

jobs:
release:
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<PropertyGroup>
<TargetFrameworks>net7.0;net8.0</TargetFrameworks>
<RootNamespace>ConfiX</RootNamespace>
<RootNamespace>Confix</RootNamespace>
<Nullable>enable</Nullable>
<LangVersion>11</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
Expand Down
22 changes: 20 additions & 2 deletions src/Confix.Tool/src/Confix.Nuke/Confix.Nuke.csproj
Original file line number Diff line number Diff line change
@@ -1,10 +1,28 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>Confix.Nuke</AssemblyName>
<RootNamespace>Confix</RootNamespace>
<IsPublishable>true</IsPublishable>
<TargetFrameworks>net7.0;net8.0</TargetFrameworks>
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath>
</PropertyGroup>

<PropertyGroup>
<Product>Confix</Product>
<PackageId>Confix.Nuke</PackageId>
<IsPackable>true</IsPackable>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseUrl>https://github.com/SwissLife-OSS/Confix/blob/main/LICENSE</PackageLicenseUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<RepositoryUrl>https://github.com/SwissLife-OSS/Confix.git</RepositoryUrl>
<PackageIconUrl>https://raw.githubusercontent.com/SwissLife-OSS/Confix/main/images/logo_small.png</PackageIconUrl>
</PropertyGroup>

<ItemGroup>
<None Include="../../../../README.md" Pack="true" PackagePath="/" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Nuke.Common"/>
</ItemGroup>
Expand Down

0 comments on commit 5f15347

Please sign in to comment.