Some checks failed
Publish NuGet Packages / publish (pull_request) Has been cancelled
Introduce a Roslyn analyzer to enforce unique ownership semantics for structs marked with the `[NonCopyable]` attribute. Added a corresponding code fix to resolve violations by suggesting the use of `Share()` or other ownership transfer methods. Key changes: - Added `StructCopyCodeAnalyzer` to detect invalid struct copies. - Implemented `StructCopyCodeFixProvider` to provide code fixes. - Created `Misaki.HighPerformance.Analyzer` and `CodeFixes` projects. - Added unit tests for the analyzer and code fixes. - Introduced `UniquePtr<T>` and `SharedPtr<T>` for pointer ownership. - Added a Visual Studio extension project and packaging support. - Updated `UnsafeUtility` to use `nint`/`nuint` for indices.
24 lines
1.8 KiB
XML
24 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
|
|
<Metadata>
|
|
<Identity Id="Misaki.HighPerformance.Analyzer.11c300de-143d-4a1e-96bd-d946c0b5f452" Version="1.0" Language="en-US" Publisher="Misaki"/>
|
|
<DisplayName>Misaki.HighPerformance.Analyzer</DisplayName>
|
|
<Description xml:space="preserve">This is a sample diagnostic extension for the .NET Compiler Platform ("Roslyn").</Description>
|
|
</Metadata>
|
|
<Installation>
|
|
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[15.0,)" />
|
|
</Installation>
|
|
<Dependencies>
|
|
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.5,)" />
|
|
</Dependencies>
|
|
<Assets>
|
|
<Asset Type="Microsoft.VisualStudio.MefComponent" d:Source="Project" d:ProjectName="Misaki.HighPerformance.Analyzer" Path="|Misaki.HighPerformance.Analyzer|"/>
|
|
<Asset Type="Microsoft.VisualStudio.Analyzer" d:Source="Project" d:ProjectName="Misaki.HighPerformance.Analyzer" Path="|Misaki.HighPerformance.Analyzer|"/>
|
|
<Asset Type="Microsoft.VisualStudio.MefComponent" d:Source="Project" d:ProjectName="Misaki.HighPerformance.Analyzer.CodeFixes" Path="|Misaki.HighPerformance.Analyzer.CodeFixes|"/>
|
|
<Asset Type="Microsoft.VisualStudio.Analyzer" d:Source="Project" d:ProjectName="Misaki.HighPerformance.Analyzer.CodeFixes" Path="|Misaki.HighPerformance.Analyzer.CodeFixes|"/>
|
|
</Assets>
|
|
<Prerequisites>
|
|
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.0,)" DisplayName="Visual Studio core editor" />
|
|
<Prerequisite Id="Microsoft.VisualStudio.Component.Roslyn.LanguageServices" Version="[15.0,)" DisplayName="Roslyn Language Services" />
|
|
</Prerequisites>
|
|
</PackageManifest> |