26 lines
1.0 KiB
Markdown
26 lines
1.0 KiB
Markdown
Created new directory to be matched by solution file
|
|
cd into directory
|
|
dotnet new blazorwasm --hosted --pwa
|
|
dotnet build
|
|
If new packages exist
|
|
->after at least five minutes to allow Baget-Push to update
|
|
->dotnet nuget locals all --clear
|
|
->dotnet build --source https://messa017.infineon.com/v3/index.json
|
|
->dotnet nuget locals all --clear
|
|
->dotnet build --source https://messa08ec.ec.local/v3/index.json
|
|
For now remove reference to client from Server
|
|
Add many references to server example serilog and UserSecrets
|
|
Update the Program.cs for logging
|
|
Add Models to Server
|
|
Added extra [Route("api/[controller]")]
|
|
dotnet new mstest -o Tests
|
|
In the tests add reference to abc.Shared
|
|
Add many references to test project
|
|
Add Server\appsettings***.json references to test project
|
|
Rename TestUnit1 and add some code
|
|
rename project abc.Tests.csproj
|
|
dotnet sln add Tests/abc.Tests.csproj
|
|
Add code to use the server
|
|
development - 9a93857ec10a35297faf64ab335db1997c1490aa
|
|
Separate page and code behind for fetch data
|
|
In the client add reference to abc.Client.Core |