Add user secrets id to project file

This commit is contained in:
Jonathan Allen
2024-01-04 12:50:23 -07:00
parent 5898e291ee
commit 96c47faeb4
3 changed files with 10 additions and 2 deletions

1
.gitignore vendored
View File

@@ -5,3 +5,4 @@ bin/
storage/ storage/
tmp.json tmp.json
tmp*.json tmp*.json
.vs/

View File

@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk.Web"> <Project Sdk="Microsoft.NET.Sdk.Web">
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\Management\Management.csproj" /> <ProjectReference Include="..\Management\Management.csproj" />
@@ -18,5 +18,6 @@
<TargetFramework>net8.0</TargetFramework> <TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>6dc43700-9593-43ca-bda7-4fa2c4e7abc7</UserSecretsId>
</PropertyGroup> </PropertyGroup>
</Project> </Project>

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ActiveDebugProfile>https</ActiveDebugProfile>
</PropertyGroup>
</Project>