-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated to VS 2019 and CodeRush 19.x
- Loading branch information
Showing
14 changed files
with
73 additions
and
76 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,13 @@ | ||
# P3Net | ||
CodeRush for Roslyn extension based upon the blog articles. | ||
CodeRush for Roslyn extension that expands the available | ||
|
||
[Writing a Context Provider for CodeRush for Roslyn](http://www.michaeltaylorp3.net/writing-a-context-provider-for-coderush-for-roslyn/) | ||
|
||
[CodeRush- Writing a Context Provider](http://www.michaeltaylorp3.net/coderush-the-thrills-of-writing-an-addin/) | ||
|
||
## Release History | ||
|
||
| Release | Description | | ||
| - | - | | ||
| 2.0.0 | Updated to Visual Studio 2019 and CodeRush 19.x | | ||
| 1.1.0 | Updated to Visual Studio 2017 and CodeRush 18.x | | ||
| 1.0.0 | Original Version | |
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,11 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<Version>2.0.0</Version> | ||
<AssemblyVersion>2.0.0.0</AssemblyVersion> | ||
<Product>P3Net CodeRush Context Providers</Product> | ||
|
||
<Company>Michael Taylor</Company> | ||
<Authors>P3Net;Michael Taylor</Authors> | ||
<Copyright>Copyright © Michael Taylor, All Rights Reserved</Copyright> | ||
</PropertyGroup> | ||
</Project> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
This file was deleted.
Oops, something went wrong.
15 changes: 7 additions & 8 deletions
15
src/P3NetCodeRushContextProvidersInstaller/source.extension.vsixmanifest
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,24 +1,23 @@ | ||
<?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="P3Net.CodeRush.ContextProviders.VS2017" Version="1.2.0" Language="en-US" Publisher="P3Net" /> | ||
<DisplayName>P3Net CodeRush ContextProviders (VS 2017)</DisplayName> | ||
<Identity Id="P3Net.CodeRush.ContextProviders" Version="2.0.0" Language="en-US" Publisher="P3Net" /> | ||
<DisplayName>P3Net CodeRush ContextProviders</DisplayName> | ||
<Description xml:space="preserve">Installer for CodeRush for Roslyn context providers from P3Net.</Description> | ||
<MoreInfo>https://github.com/CoolDadTx/CodeRush_Extensions</MoreInfo> | ||
<GettingStartedGuide>http://www.michaeltaylorp3.net</GettingStartedGuide> | ||
<ReleaseNotes>Updated to support CodeRush 18.1</ReleaseNotes> | ||
<GettingStartedGuide>http://www.michaeltaylorp3.net/writing-a-context-provider-for-coderush-for-roslyn/</GettingStartedGuide> | ||
<ReleaseNotes>http://www.michaeltaylorp3.net/writing-a-context-provider-for-coderush-for-roslyn/</ReleaseNotes> | ||
</Metadata> | ||
<Installation> | ||
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[15.0]" /> | ||
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[16.0,17.0)" /> | ||
</Installation> | ||
<Dependencies> | ||
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.5,)" /> | ||
<Dependency d:Source="Installed" Id="81b8f465-6112-407e-a05a-44e3188746af" DisplayName="CodeRush" Version="[18.1.3,19.0)" d:InstallSource="Download" /> | ||
<Dependency d:Source="Installed" Id="81b8f465-6112-407e-a05a-44e3188746af" DisplayName="CodeRush" Version="[19.1,20.0)" d:InstallSource="Download" /> | ||
</Dependencies> | ||
<Assets> | ||
<Asset Type="Microsoft.VisualStudio.MefComponent" d:Source="Project" d:ProjectName="P3Net.CodeRush.ContextProviders" Path="|P3Net.CodeRush.ContextProviders|" /> | ||
</Assets> | ||
<Prerequisites> | ||
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.0,16.0)" DisplayName="Visual Studio core editor" /> | ||
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[16.0,)" DisplayName="Visual Studio core editor" /> | ||
</Prerequisites> | ||
</PackageManifest> |