-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
797 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -363,3 +363,4 @@ MigrationBackup/ | |
FodyWeavers.xsd | ||
|
||
.idea/ | ||
Directory.Build.props |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.