-
Notifications
You must be signed in to change notification settings - Fork 0
Refactor project configuration and update dependencies (#118) #119
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,14 @@ | ||||||||
| <Project> | ||||||||
| <PropertyGroup> | ||||||||
| <TargetFramework>net10.0</TargetFramework> | ||||||||
| <ImplicitUsings>enable</ImplicitUsings> | ||||||||
| <Nullable>enable</Nullable> | ||||||||
| <AnalysisLevel>latest-all</AnalysisLevel> | ||||||||
| <AnalysisMode>All</AnalysisMode> | ||||||||
| <EnableNETAnalyzers>true</EnableNETAnalyzers> | ||||||||
| <TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||||||||
|
||||||||
| <TreatWarningsAsErrors>true</TreatWarningsAsErrors> | |
| <TreatWarningsAsErrors>true</TreatWarningsAsErrors> | |
| <UseArtifactsOutput>true</UseArtifactsOutput> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| <Project> | ||
| <ItemGroup> | ||
| <PackageVersion Include="AwesomeAssertions" Version="9.4.0" /> | ||
| <PackageVersion Include="Microsoft.Extensions.Http.Resilience" Version="10.4.0" /> | ||
| <PackageVersion Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.5" /> | ||
| <PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.4.0" /> | ||
| <PackageVersion Include="Microsoft.SourceLink.GitHub" Version="10.0.201" /> | ||
| <PackageVersion Include="Serilog" Version="4.3.1" /> | ||
| <PackageVersion Include="Serilog.Enrichers.Thread" Version="4.0.0" /> | ||
| <PackageVersion Include="Serilog.Extensions.Logging" Version="10.0.0" /> | ||
| <PackageVersion Include="Serilog.Sinks.Console" Version="6.1.1" /> | ||
| <PackageVersion Include="Serilog.Sinks.File" Version="7.0.0" /> | ||
| <PackageVersion Include="System.CommandLine" Version="2.0.5" /> | ||
| <PackageVersion Include="xunit.analyzers" Version="1.27.0" /> | ||
| <PackageVersion Include="xunit.runner.visualstudio" Version="3.1.5" /> | ||
| <PackageVersion Include="xunit.v3" Version="3.2.2" /> | ||
| </ItemGroup> | ||
| </Project> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
preLaunchTaskruns.Net Build, which (per.vscode/tasks.json) just executesdotnet buildwith default output paths. This launch config now pointsprogram/cwdat/.artifacts/..., so debugging will fail unless the build is also configured to emit binaries there. Either update the build task/MSBuild props to output into.artifacts(e.g., enable the SDK artifacts output feature / setOutputPath) or revertprogram/cwdto the standardbin/Debug/<tfm>location.