|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk.Web"> |
2 | 2 |
|
3 | | - <PropertyGroup> |
4 | | - <TargetFramework>net9.0</TargetFramework> |
5 | | - <Nullable>enable</Nullable> |
6 | | - <ImplicitUsings>enable</ImplicitUsings> |
7 | | - </PropertyGroup> |
8 | | - |
9 | | - <ItemGroup> |
10 | | - <PackageReference Include="Blazored.LocalStorage" Version="4.5.0" /> |
11 | | - <PackageReference Include="FlowSynx.Client.AspNetCore" Version="1.3.6" /> |
12 | | - <PackageReference Include="Microsoft.AspNetCore.Authentication.Cookies" Version="2.3.0" /> |
13 | | - <PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="9.0.8" /> |
14 | | - <PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="9.0.7" /> |
15 | | - <PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="8.13.0" /> |
16 | | - <PackageReference Include="MudBlazor" Version="8.11.0" /> |
17 | | - </ItemGroup> |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFramework>net9.0</TargetFramework> |
| 5 | + <Nullable>enable</Nullable> |
| 6 | + <ImplicitUsings>enable</ImplicitUsings> |
| 7 | + <AssemblyName>console</AssemblyName> |
| 8 | + <Copyright>© FlowSynx. All rights reserved.</Copyright> |
| 9 | + <RepositoryUrl>https://github.com/flowsynx/console</RepositoryUrl> |
| 10 | + <Title>FlowSynx Console</Title> |
| 11 | + <Company>FlowSynx</Company> |
| 12 | + <Description>Web-based management console for orchestrating, executing, and monitoring workflows via the FlowSynx Workflow Automation API</Description> |
| 13 | + <Authors>FlowSynx</Authors> |
| 14 | + <PackageProjectUrl>https://flowsynx.io</PackageProjectUrl> |
| 15 | + </PropertyGroup> |
| 16 | + |
| 17 | + <PropertyGroup Condition="'$(Configuration)'=='Release'"> |
| 18 | + <DebugSymbols>False</DebugSymbols> |
| 19 | + <DebugType>None</DebugType> |
| 20 | + </PropertyGroup> |
| 21 | + |
| 22 | + <ItemGroup> |
| 23 | + <PackageReference Include="Blazored.LocalStorage" Version="4.5.0" /> |
| 24 | + <PackageReference Include="FlowSynx.Client.AspNetCore" Version="1.3.6" /> |
| 25 | + <PackageReference Include="Microsoft.AspNetCore.Authentication.Cookies" Version="2.3.0" /> |
| 26 | + <PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="9.0.8" /> |
| 27 | + <PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="9.0.7" /> |
| 28 | + <PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="8.13.0" /> |
| 29 | + <PackageReference Include="MudBlazor" Version="8.11.0" /> |
| 30 | + </ItemGroup> |
18 | 31 |
|
19 | 32 | </Project> |
0 commit comments