-
Notifications
You must be signed in to change notification settings - Fork 14
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
1 parent
5cccdd2
commit dcc44d5
Showing
6 changed files
with
53 additions
and
1,860 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 |
---|---|---|
@@ -1,31 +1,46 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.Web"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="BlazorStatic" Version="1.0.0-beta.11" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<!-- <ProjectReference Include="..\src\BlazorStatic.csproj" />--> | ||
</ItemGroup> | ||
|
||
|
||
<ItemGroup> | ||
<None Update="Content/**/*"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
</PropertyGroup> | ||
|
||
|
||
<!-- to make hot reload work on .md files --> | ||
<ItemGroup> | ||
<Watch Include="Content/**/*" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<!-- Serve for Conditional logic for template instantiation --> | ||
<!-- You can put the version inside the PackageReference --> | ||
<BlazorStaticVersion>1.0.0-beta.12</BlazorStaticVersion> | ||
</PropertyGroup> | ||
|
||
<!--#if (UseInTemplate)--> | ||
<ItemGroup> | ||
<PackageReference Include="BlazorStatic" Version="$(BlazorStaticVersion)"/> | ||
</ItemGroup> | ||
<!--#else--> | ||
<ItemGroup Condition="'$(Configuration)' == 'Debug'"> | ||
<!-- for debugging when running from BlazorStaticWebsite.sln--> | ||
<ProjectReference Include="../../../../src/BlazorStatic.csproj"/> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(Configuration)' == 'Release'"> | ||
<!--When building the page on ci/cd--> | ||
<PackageReference Include="BlazorStatic" Version="$(BlazorStaticVersion)"/> | ||
</ItemGroup> | ||
<!--#endif--> | ||
|
||
|
||
<ItemGroup> | ||
<None Update="Content/**/*"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
</ItemGroup> | ||
|
||
|
||
<!-- to make hot reload work on .md files --> | ||
<ItemGroup> | ||
<Watch Include="Content/**/*"/> | ||
</ItemGroup> | ||
|
||
|
||
</Project> |
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
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.