Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/core.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThays Grazia <thaystg@gmail.com>2022-07-07 19:26:28 +0300
committerGitHub <noreply@github.com>2022-07-07 19:26:28 +0300
commitb1210dd7b273392dd9f7b9e7f1fd681d98de1d25 (patch)
treee8c80be7eca2fd5b3e5042545d80460317e09abe
parentd1e0cee13c33ab2f370c49e3b3376bb86ef08cde (diff)
Adding SkipUnchangedFiles
-rw-r--r--release-notes/7.0/known-issues.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/release-notes/7.0/known-issues.md b/release-notes/7.0/known-issues.md
index 23343150..9cf58094 100644
--- a/release-notes/7.0/known-issues.md
+++ b/release-notes/7.0/known-issues.md
@@ -17,7 +17,8 @@ Copy the following into the server net7.0 blazor wasm csproj:
</ItemGroup>
<Target Name="_CopySerilogDeps" AfterTargets="Build">
<Copy SourceFiles="$(PkgSerilog_Extensions_Logging_File)\lib\netstandard2.0\Serilog.Extensions.Logging.File.dll"
- DestinationFolder="$(OutputPath)\BlazorDebugProxy"/>
+ DestinationFolder="$(OutputPath)\BlazorDebugProxy"
+ SkipUnchangedFiles="true"/>
</Target>
```