Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@
<!-- Analyzers -->
<PackageReference Include="DotNetAnalyzers.DocumentationAnalyzers" Version="1.0.0-beta.59" PrivateAssets="all" />
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.556" PrivateAssets="all" />
<PackageReference Include="Roslynator.Analyzers" Version="4.11.0" PrivateAssets="all" />
<PackageReference Include="Roslynator.Analyzers" Version="4.14.0" PrivateAssets="all" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion Source/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</PropertyGroup>

<ItemGroup>
<None Include="..\..\Resources\Singulink Icon 128x128.png" Pack="true" PackagePath="\"/>
<None Include="..\..\Resources\Singulink Icon 128x128.png" Pack="true" PackagePath="\" />
<None Include="..\key.snk" Link="key.snk" />
</ItemGroup>
</Project>
11 changes: 3 additions & 8 deletions Source/Directory.Build.targets
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,13 @@
</_CompatWarningFileContent>
</PropertyGroup>

<WriteLinesToFile File="$(_CompatWarningFilePath)"
Lines="$(_CompatWarningFileContent)"
Overwrite="true"
WriteOnlyWhenDifferent="true" />
<WriteLinesToFile File="$(_CompatWarningFilePath)" Lines="$(_CompatWarningFileContent)" Overwrite="true" WriteOnlyWhenDifferent="true" />

<ItemGroup>
<None Include="$(_CompatWarningFilePath)" Pack="true"
PackagePath="buildTransitive\netcoreapp2.0\$(PackageId).targets;buildTransitive\net461\$(PackageId).targets"/>
<None Include="$(_CompatWarningFilePath)" Pack="true" PackagePath="buildTransitive\netcoreapp2.0\$(PackageId).targets;buildTransitive\net461\$(PackageId).targets" />

<!-- Lowest supported .NET and .NET Framework TFMs go into PackagePath here: -->
<None Include="..\buildTransitive\_._" Pack="true"
PackagePath="buildTransitive\net6.0\;buildTransitive\net462\"/>
<None Include="..\buildTransitive\_._" Pack="true" PackagePath="buildTransitive\net6.0\;buildTransitive\net462\" />
</ItemGroup>
</Target>
</Project>
12 changes: 6 additions & 6 deletions Tests/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="MSTest.TestAdapter" Version="3.2.2" />
<PackageReference Include="MSTest.TestFramework" Version="3.2.2" />
<PackageReference Include="coverlet.collector" Version="6.0.2" />
<PackageReference Include="Shouldly" Version="4.2.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
<PackageReference Include="MSTest.TestAdapter" Version="3.9.3" />
<PackageReference Include="MSTest.TestFramework" Version="3.9.3" />
<PackageReference Include="coverlet.collector" Version="6.0.4" />
<PackageReference Include="Shouldly" Version="4.3.0" />
<PackageReference Include="PrefixClassName.MsTest" Version="1.2.1" />

<PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers" Version="3.3.4" PrivateAssets="All" />
<PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers" Version="4.14.0" PrivateAssets="All" />
<AdditionalFiles Include="$(MSBuildThisFileDirectory)BannedSymbols.txt" />
</ItemGroup>
</Project>
Loading