-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
3,662 additions
and
8 deletions.
There are no files selected for viewing
61 changes: 61 additions & 0 deletions
61
CWASP Razor Edition/Migrations/20240101232343_Reset_Migration_DB_PostDrop.Designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
22 changes: 22 additions & 0 deletions
22
CWASP Razor Edition/Migrations/20240101232343_Reset_Migration_DB_PostDrop.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
using Microsoft.EntityFrameworkCore.Migrations; | ||
|
||
#nullable disable | ||
|
||
namespace CWASP_Razor_Edition.Migrations | ||
{ | ||
/// <inheritdoc /> | ||
public partial class Reset_Migration_DB_PostDrop : Migration | ||
{ | ||
/// <inheritdoc /> | ||
protected override void Up(MigrationBuilder migrationBuilder) | ||
{ | ||
|
||
} | ||
|
||
/// <inheritdoc /> | ||
protected override void Down(MigrationBuilder migrationBuilder) | ||
{ | ||
|
||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
// Add services to the container. | ||
builder.Services.AddRazorPages(); | ||
builder.Services.AddDbContext<CWASP_Razor_EditionContext>(options => | ||
options.UseSqlServer(builder.Configuration.GetConnectionString("CWASP_Razor_EditionContext") ?? throw new InvalidOperationException("Connection string 'CWASP_Razor_EditionContext' not found."))); | ||
options.UseSqlServer(builder.Configuration.GetConnectionString("CWASPdbconnection") ?? throw new InvalidOperationException("Connection string 'CWASPdbconnection' not found."))); | ||
builder.Services.AddApplicationInsightsTelemetry(builder.Configuration["APPLICATIONINSIGHTS_CONNECTION_STRING"]); | ||
Check warning on line 11 in CWASP Razor Edition/Program.cs GitHub Actions / build
Check warning on line 11 in CWASP Razor Edition/Program.cs GitHub Actions / build
|
||
|
||
var app = builder.Build(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"version": "1.0", | ||
"defaultProvider": "unpkg", | ||
"libraries": [ | ||
{ | ||
"library": "@microsoft/signalr@latest", | ||
"destination": "wwwroot/js/signalr/", | ||
"files": [ | ||
"dist/browser/signalr.js", | ||
"dist/browser/signalr.min.js" | ||
] | ||
} | ||
] | ||
} |
Oops, something went wrong.