Skip to content

Commit

Permalink
removed Microsoft's 'help' from csproj
Browse files Browse the repository at this point in the history
  • Loading branch information
nickpreston24 committed Mar 5, 2024
1 parent 5e3c1d5 commit 79faa59
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 12 deletions.
19 changes: 15 additions & 4 deletions Pages/Shared/Components/HydroCounter.cshtml
Original file line number Diff line number Diff line change
@@ -1,19 +1,30 @@
@model HydroCounter

<div class="flex flex-row">
<div class="flex flex-row join join-horizontal">
Count: <strong>@Model.Count</strong>
@* x-on:click="localStorage.setItem('last-count',@Model.Count)" *@
@* x-on:click="localStorage.setItem('last-count',@Model.Count)" *@


<button
class="btn btn-primary join-item"
hydro-on:click="@(() => Model.Add())">
Add
</button>

<button hydro-on:click="@(() => Model.Reset())">
<button
class="btn btn-secondary join-item"

hydro-on:click="@(() => Model.Reset())">
Reset
</button>

<div x-data="{ index: 0 }">
<strong x-text="index"></strong>
<button x-on:click="index = index + 1">Add</button>
<button
class="btn btn-accent join-item"

x-on:click="index = index + 1">
Add
</button>
</div>
</div>
8 changes: 0 additions & 8 deletions nugsnet6.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,4 @@
<PackageReference Include="System.ServiceModel.Syndication" Version="8.0.0-preview.3.23174.8" />
</ItemGroup>

<ItemGroup>
<Content Include="Controllers\scrapes.rest">
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
</ItemGroup>

</Project>

0 comments on commit 79faa59

Please sign in to comment.