Skip to content

Commit

Permalink
First alpha release 🎉
Browse files Browse the repository at this point in the history
  • Loading branch information
abjerner committed Jun 21, 2023
1 parent 559316c commit c255260
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
2 changes: 2 additions & 0 deletions debug.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@echo off
dotnet build src/Limbo.Umbraco.Migrations --configuration Debug /t:rebuild /t:pack -p:PackageOutputPath=c:/nuget
2 changes: 2 additions & 0 deletions release.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@echo off
dotnet build src/Limbo.Umbraco.Migrations --configuration Release /t:rebuild /t:pack -p:PackageOutputPath=../../releases/nuget
Binary file not shown.
9 changes: 7 additions & 2 deletions src/Limbo.Umbraco.Migrations/Limbo.Umbraco.Migrations.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<PropertyGroup>
<VersionPrefix>1.0.0-alpha000</VersionPrefix>
<VersionPrefix>1.0.0-alpha001</VersionPrefix>
<VersionSuffix Condition="'$(Configuration)'=='Debug'">build$([System.DateTime]::UtcNow.ToString(`yyyyMMddHHmm`))</VersionSuffix>
<Company>Limbo</Company>
<Authors>Anders Bjerner</Authors>
Expand All @@ -21,7 +21,7 @@
<PackageId>Limbo.Umbraco.Migrations</PackageId>
<PackageTags>Limbo, Umbraco, Migrations</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/limbo-works/Limbo.Umbraco.Migrations</PackageProjectUrl>
<PackageProjectUrl>https://packages.limbo.works/limbo.umbraco.migrations/v1/</PackageProjectUrl>
<PackageIcon>Limbo.png</PackageIcon>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/limbo-works/Limbo.Umbraco.Migrations</RepositoryUrl>
Expand All @@ -37,6 +37,11 @@
<PackageReference Include="Umbraco.Cms.Web.BackOffice" Version="[10.0.0,12.0)" />
</ItemGroup>

<!-- Include package icon and README for the NuGet -->
<ItemGroup>
<Content Include="../build/Limbo.png" Pack="true" PackagePath="\" />
</ItemGroup>

<!-- Generate XML documentation -->
<!--<PropertyGroup>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
Expand Down

0 comments on commit c255260

Please sign in to comment.