- Updated README.md to include "Project Structure" section. - Removed WeatherForecastController.cs and WeatherForecast.cs. - Simplified Surge365.MassEmailReact.Server.csproj. - Updated solution file to reflect new project references. - Refactored jquery.ss.dbmanager-1.0.js and jquery.usahaulers.global.js. - Modified logging functionalities in jquery.usahaulers.logging-1.0.js. - Set up constants from environment variables in constants.js and constants.ts. - Introduced new classes in Surge365.MassEmailReact.Application, Domain, and Infrastructure. - Added UnitTest1.cs for basic unit testing structure. - Enhanced Surge365.MassEmailReact.Web.esproj with new configurations. - Expanded utility functions in ytb-massemail-.global.ts and ytb-massemail-utilities-1.0.ts.
19 lines
856 B
Plaintext
19 lines
856 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>
|
|
</Project> |