dotnet core 6

This commit is contained in:
Adam R Grey 2022-11-28 14:14:24 -05:00
parent 263f8ab040
commit b82885a3c5
2 changed files with 4 additions and 4 deletions

2
.vscode/launch.json vendored
View File

@ -10,7 +10,7 @@
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/bin/Debug/net5.0/directors-assistant.dll",
"program": "${workspaceFolder}/bin/Debug/net6.0/directors-assistant.dll",
"args": [],
"cwd": "${workspaceFolder}",
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console

View File

@ -2,9 +2,9 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>directors_assistant</RootNamespace>
<RestoreSources>$(RestoreSources);https://thegreyn.jfrog.io/artifactory/api/nuget/adamrgrey-nuget;https://api.nuget.org/v3/index.json</RestoreSources>
<RestoreSources>$(RestoreSources)</RestoreSources>
</PropertyGroup>
<ItemGroup>
@ -12,7 +12,7 @@
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="5.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="silvermeddlists.franz" Version="0.0.9" />
<PackageReference Include="AdamRGrey.franz" Version="1.0.0" />
</ItemGroup>
<ItemGroup>