-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Scaffold a VS extension project based on the new VS extensibility model.
Part of #63.
- Loading branch information
Showing
6 changed files
with
170 additions
and
90 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
namespace Vezel.Celerity.VisualStudio; | ||
|
||
[SuppressMessage("", "CA1812")] | ||
[VisualStudioContribution] | ||
internal sealed class CelerityExtension : Extension | ||
{ | ||
public override ExtensionConfiguration ExtensionConfiguration { get; } = | ||
new() | ||
{ | ||
Metadata = new( | ||
"celerity", | ||
Version.Parse(ThisAssembly.AssemblyFileVersion), | ||
"Vezel", | ||
"Celerity", | ||
"Celerity programming language support for Visual Studio."), | ||
}; | ||
} |
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,16 @@ | ||
<!-- TODO: Remove this file when the packages are available on NuGet. --> | ||
<configuration> | ||
<packageSources> | ||
<add key="vside" value="https://pkgs.dev.azure.com/azure-public/vside/_packaging/msft_consumption/nuget/v3/index.json" /> | ||
</packageSources> | ||
|
||
<packageSourceMapping> | ||
<packageSource key="vside"> | ||
<package pattern="Microsoft.NET.StringTools" /> | ||
<package pattern="Microsoft.ServiceHub.*" /> | ||
<package pattern="Microsoft.VisualStudio.*" /> | ||
<package pattern="Microsoft.VSSDK.*" /> | ||
<package pattern="StreamJsonRpc" /> | ||
</packageSource> | ||
</packageSourceMapping> | ||
</configuration> |
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,2 @@ | ||
[assembly: DisableRuntimeMarshalling] | ||
[module: SkipLocalsInit] |
Oops, something went wrong.