Skip to content

Commit

Permalink
Add Fun.Build.Cli
Browse files Browse the repository at this point in the history
  • Loading branch information
albertwoo committed Jan 17, 2024
1 parent 7131cf9 commit bf34b93
Show file tree
Hide file tree
Showing 9 changed files with 797 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -363,3 +363,4 @@ MigrationBackup/
FodyWeavers.xsd

.idea/
Directory.Build.props
7 changes: 7 additions & 0 deletions Fun.Build.Cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Changelog

## [Unreleased]

## [0.0.1] - 2024-01-17

First release: a dotnet cli tool to help manage all the scripts which using Fun.Build
27 changes: 27 additions & 0 deletions Fun.Build.Cli/Fun.Build.Cli.fsproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net8.0</TargetFrameworks>
<PackAsTool>true</PackAsTool>
<ToolCommandName>fun-blazor</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>
<!-- <PublishAot>true</PublishAot>
<UseSystemResourceKeys>true</UseSystemResourceKeys>
<InvariantGlobalization>true</InvariantGlobalization>
<StripSymbols>true</StripSymbols> -->
</PropertyGroup>

<ItemGroup>
<Compile Include="Start.fs" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Fun.Build\Fun.Build.fsproj" />
</ItemGroup>

<!-- <ItemGroup>
<PackageReference Include="PublishAotCompressed" Version="1.0.3" />
</ItemGroup> -->

</Project>
Loading

0 comments on commit bf34b93

Please sign in to comment.