- Updated `AuthenticationController` to return user data instead of token. - Added `ITargetService` and `ITargetRepository` to `Program.cs`. - Enhanced `appsettings.json` with connection timeout and security notes. - Modified `IAuthService` to reflect new authentication response structure. - Implemented connection retry mechanism in `DataAccess.cs`. - Refactored UI components to use MUI styling in `Layout.tsx`, `App.tsx`, and others. - Created new files for target management, including `TargetsController`, `TargetUpdateDto`, and related services. - Added `TargetEdit` modal for editing target details and `LineChartSample` for data visualization. - Updated package dependencies in `package-lock.json` and project file.
22 lines
921 B
Plaintext
22 lines
921 B
Plaintext
<Project Sdk="Microsoft.VisualStudio.JavaScript.Sdk/1.0.2191419">
|
|
<PropertyGroup>
|
|
<StartupCommand>npm run dev</StartupCommand>
|
|
<JavaScriptTestRoot>src\</JavaScriptTestRoot>
|
|
<JavaScriptTestFramework>Vitest</JavaScriptTestFramework>
|
|
<!-- Allows the build (or compile) script located on package.json to run on Build -->
|
|
<ShouldRunBuildScript>false</ShouldRunBuildScript>
|
|
<!-- Folder where production build objects will be placed -->
|
|
<BuildOutputFolder>$(MSBuildProjectDirectory)\dist</BuildOutputFolder>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<None Remove="public\content\lib\**" />
|
|
<TypeScriptConfiguration Remove="public\content\lib\**" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Remove="src\components\layouts\LayoutLogin_Backup.tsx" />
|
|
<None Remove="src\components\layouts\Layout_backup.tsx" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="src\hooks\" />
|
|
</ItemGroup>
|
|
</Project> |