-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #155 from dotnet-campus/t/walterlv/upgrade
Upgrade project files and use new features.
- Loading branch information
Showing
64 changed files
with
2,216 additions
and
2,426 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,43 @@ | ||
<Project> | ||
|
||
<Import Project="build\Version.props" /> | ||
|
||
<!-- Framework and language --> | ||
<PropertyGroup> | ||
<!-- Language --> | ||
<LangVersion>latest</LangVersion> | ||
<PackageOutputPath>$(MSBuildThisFileDirectory)bin\$(Configuration)</PackageOutputPath> | ||
<Company>dotnet campus(.NET 职业技术学院)</Company> | ||
<Nullable>enable</Nullable> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<!-- Build --> | ||
<ArtifactsPath>$(MSBuildThisFileDirectory)artifacts</ArtifactsPath> | ||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> | ||
<Deterministic>true</Deterministic> | ||
<!-- | ||
Add NoWarn to remove build warnings | ||
NU1803: Using an insecure http NuGet source | ||
--> | ||
<NoWarn>$(NoWarn);NU1507;NU1803;NETSDK1201;PRI257</NoWarn> | ||
<!-- | ||
CA1416: Platform compatibility warning | ||
--> | ||
<WarningsAsErrors>$(WarningAsErrors);CA1416</WarningsAsErrors> | ||
</PropertyGroup> | ||
|
||
<!-- Custom properties --> | ||
<PropertyGroup> | ||
<RepositoryRoot>$(MSBuildThisFileDirectory)</RepositoryRoot> | ||
<ThisYear>$([System.DateTime]::Now.ToString(`yyyy`))</ThisYear> | ||
</PropertyGroup> | ||
|
||
<!-- Package and project properties --> | ||
<PropertyGroup> | ||
<Description>本机内多进程通讯库,稳定 IPC 通讯库</Description> | ||
<Company>dotnet campus(.NET 职业技术学院)</Company> | ||
<Authors>dotnet-campus</Authors> | ||
<Copyright>Copyright © 2020-$(ThisYear) dotnet campus, All Rights Reserved.</Copyright> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>https://github.com/dotnet-campus/dotnetCampus.Ipc</RepositoryUrl> | ||
<PackageProjectUrl>https://github.com/dotnet-campus/dotnetCampus.Ipc</PackageProjectUrl> | ||
<Description>本机内多进程通讯库,稳定 IPC 通讯库</Description> | ||
|
||
<RepositoryType>git</RepositoryType> | ||
<Copyright>Copyright © 2020-2024 dotnet campus, All Rights Reserved.</Copyright> | ||
|
||
<NoWarn>$(NoWarn);NU1803</NoWarn> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<SourceRoot Include="$(MSBuildThisFileDirectory)/"/> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<Project> | ||
<ItemGroup> | ||
<PackageVersion Include="coverlet.collector" Version="6.0.2" /> | ||
<PackageVersion Include="dotnetCampus.AsyncWorkerCollection.Source" Version="1.7.2" /> | ||
<PackageVersion Include="dotnetCampus.CommandLine" Version="3.3.1" /> | ||
<PackageVersion Include="dotnetCampus.LatestCSharpFeatures" Version="12.0.0" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Hosting" Version="2.2.7" /> | ||
<PackageVersion Include="Microsoft.CodeAnalysis" Version="4.10.0" /> | ||
<PackageVersion Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.4" /> | ||
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp" Version="4.10.0" /> | ||
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp.Analyzer.Testing.MSTest" Version="1.1.2" /> | ||
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp.CodeFix.Testing.MSTest" Version="1.1.2" /> | ||
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp.CodeRefactoring.Testing.MSTest" Version="1.1.2" /> | ||
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.10.0" /> | ||
<PackageVersion Include="Microsoft.CodeAnalysis.VisualBasic.Analyzer.Testing.MSTest" Version="1.1.2" /> | ||
<PackageVersion Include="Microsoft.CodeAnalysis.VisualBasic.CodeFix.Testing.MSTest" Version="1.1.2" /> | ||
<PackageVersion Include="Microsoft.CodeAnalysis.VisualBasic.CodeRefactoring.Testing.MSTest" Version="1.1.2" /> | ||
<PackageVersion Include="Microsoft.CSharp" Version="4.7.0" /> | ||
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.10.0" /> | ||
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="1.0.0" /> | ||
<PackageVersion Include="Moq" Version="4.20.70" /> | ||
<PackageVersion Include="MSTest.TestAdapter" Version="3.4.3" /> | ||
<PackageVersion Include="MSTest.TestFramework" Version="3.4.3" /> | ||
<PackageVersion Include="Newtonsoft.Json" Version="13.0.3" /> | ||
<PackageVersion Include="System.IO.Pipelines" Version="8.0.0" /> | ||
<PackageVersion Include="System.ValueTuple" Version="4.5.0" /> | ||
<PackageVersion Include="Walterlv.NullableAttributes.Source" Version="7.4.0" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...icAnalyzers/AddIpcProxyConfigsAnalyzer.cs → ...s/Analyzers/AddIpcProxyConfigsAnalyzer.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...iagnosticAnalyzers/AddIpcShapeAnalyzer.cs → ...nalyzers/Analyzers/AddIpcShapeAnalyzer.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...Analyzers/Compiling/IpcAttributeHelper.cs → ...Analyzers/Compiling/IpcAttributeHelper.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...alyzers/Compiling/IpcProxyInvokingInfo.cs → ...alyzers/Compiling/IpcProxyInvokingInfo.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...tractTypeDismatchWithInterfaceAnalyzer.cs → ...tractTypeDismatchWithInterfaceAnalyzer.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
.../ContractTypeMustBeAnInterfaceAnalyzer.cs → .../ContractTypeMustBeAnInterfaceAnalyzer.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...rnDependsOnIgnoresIpcExceptionAnalyzer.cs → ...rnDependsOnIgnoresIpcExceptionAnalyzer.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...pcMemberAttributeIsUnnecessaryAnalyzer.cs → ...pcMemberAttributeIsUnnecessaryAnalyzer.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...noresIpcExceptionIsRecommendedAnalyzer.cs → ...noresIpcExceptionIsRecommendedAnalyzer.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 1 addition & 2 deletions
3
src/dotnetCampus.Ipc.Analyzers/CodeAnalysis/Utils/IpcSemanticSyntaxHelper.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 4 additions & 5 deletions
9
...xeProviders/AddIpcShapeCodeFixProvider.cs → ...s/CodeFixes/AddIpcShapeCodeFixProvider.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 2 additions & 12 deletions
14
...ChangeClassContractTypeCodeFixProvider.cs → ...ChangeClassContractTypeCodeFixProvider.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 2 additions & 11 deletions
13
...dsOnIgnoresIpcExceptionCodeFixProvider.cs → ...dsOnIgnoresIpcExceptionCodeFixProvider.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 2 additions & 12 deletions
14
...rAttributeIsUnnecessaryCodeFixProvider.cs → ...rAttributeIsUnnecessaryCodeFixProvider.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 1 addition & 3 deletions
4
...cExceptionIsRecommendedCodeFixProvider.cs → ...cExceptionIsRecommendedCodeFixProvider.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.