-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBlax.csproj
36 lines (30 loc) · 1.78 KB
/
Blax.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<PackageId>Blax</PackageId>
<Version>1.0.1</Version>
<Authors>RednibCoding</Authors>
<Copyright>Copyright (c) RednibCoding aka Michael Binder 2023.</Copyright>
<Description>Blax is a state management library tailored specifically for Blazor applications. The library enables developers to manage application state through observable properties and lists with minimal effort. Using a straightforward and type-safe API, Blax helps you keep your UI components in sync with the underlying state automatically. Whether you're building a small Blazor app or a large-scale project, Blax provides a flexible and efficient way to manage your application's state.</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<RepositoryUrl>https://github.com/RednibCoding/Blax</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/RednibCoding/Blax</PackageProjectUrl>
<PackageTags>Blazor;State;Management;Mobx;Observer;Observable;Web;Razor;Reactive</PackageTags>
<PackageIcon>icon.png</PackageIcon>
<PackageReleaseNotes>Initial Release</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<SupportedPlatform Include="browser" />
<None Include="README.md" Pack="true" PackagePath="\"/>
<None Include="LICENSE.md" Pack="true" PackagePath="\"/>
<None Include="icon.png" Pack="true" PackagePath="\"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Castle.Core" Version="5.1.1" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="7.0.10" />
</ItemGroup>
</Project>