Skip to content

Commit d9bff9d

Browse files
committed
build: refresh project-system
1 parent ca09322 commit d9bff9d

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

shared/BannedSymbols.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ T:System.Threading.Timer;Use System.TimeProvider.CreateTimer instead
8888
T:System.Timers.Timer;Use System.TimeProvider.CreateTimer instead
8989
M:System.DateTimeOffset.#ctor(System.DateTime);Use DateTimeOffset constructor with a specified offset, checking the DateTime.Kind, since this constructor is very prone to timezone errors
9090
M:System.DateTimeOffset.op_Implicit(System.DateTime);Use DateTimeOffset constructor with a specified offset, checking the DateTime.Kind, since this constructor is very prone to timezone errors
91-
P:System.DateTimeOffset.DateTime;Prefer using DateTimeOffset directly or create instances of DateTime with TimeProvder.GetUtcDateTime/GetLocalDateTime, use this property only if TZ-specific calendar date is required
91+
P:System.DateTimeOffset.DateTime;Prefer using DateTimeOffset directly or create instances of DateTime with TimeProvider.GetUtcDateTime/GetLocalDateTime, use this property only if TZ-specific calendar date is required
9292
T:System.Threading.LazyInitializer;Use System.Lazy<> instead, LazyInitializer is NRT-unfriendly for old netstandard
9393
F:System.Security.Cryptography.X509Certificates.X509RevocationMode.Offline;Use Online revocation check instead, Offline uses only cached revocation information
9494
M:System.Diagnostics.Debug.Assert(System.Boolean);Do not use Debug.Assert since it may not do what you're expecting;plain "if + throw" works better

shared/Minimal.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
<DebugType>embedded</DebugType>
2222
<Deterministic>true</Deterministic>
2323
<EnableSourceLink>false</EnableSourceLink>
24+
<EnableSourceControlManagerQueries>false</EnableSourceControlManagerQueries>
2425
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
2526
<AnalysisLevel>latest</AnalysisLevel>
2627
<NoWarn>$(NoWarn);CS1591</NoWarn>

shared/MinimalTestLibrary.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<ItemGroup Label="MinimalTestPackageReferences">
1515
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
16-
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.1" />
16+
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.4" PrivateAssets="All" />
1717
</ItemGroup>
1818

1919
<ItemGroup Label="MinimalTestConfigFiles">

0 commit comments

Comments
 (0)