Skip to content

Commit d22fb89

Browse files
author
Samir Boulema
committed
Cleanup
1 parent b0868c1 commit d22fb89

6 files changed

+32
-57
lines changed

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/src/bin
22
/src/obj
33
/.vs
4+
/src/*.user

Diff for: src/LICENSE

-21
This file was deleted.

Diff for: src/NuGetMonitor.csproj

+3-2
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,9 @@
7777
</PackageReference>
7878
</ItemGroup>
7979
<ItemGroup>
80-
<Content Include="LICENSE">
81-
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
80+
<Content Include="..\LICENSE">
81+
<Link>Resources\LICENSE</Link>
82+
<IncludeInVSIX>true</IncludeInVSIX>
8283
</Content>
8384
<Content Include="NugetMonitor.ico">
8485
<CopyToOutputDirectory>Always</CopyToOutputDirectory>

Diff for: src/NuGetMonitor.csproj.user

-7
This file was deleted.

Diff for: src/Services/InfoBarService.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ public static async Task ShowInfoBar()
1313
var model = new InfoBarModel(
1414
new[] {
1515
new InfoBarTextSpan("NuGet updates available. "),
16-
new InfoBarHyperlink("Manage NuGet")
16+
new InfoBarHyperlink("Manage NuGet"),
17+
new InfoBarTextSpan(".")
1718
},
1819
KnownMonikers.NuGet,
1920
true);

Diff for: src/source.extension.vsixmanifest

+26-26
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<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">
3-
<Metadata>
4-
<Identity Id="NuGetMonitor.2a6fbffe-f3fd-4bf8-98cc-5ae2c833a1c7" Version="1.0" Language="en-US" Publisher="Samir Boulema" />
5-
<DisplayName>NuGetMonitor</DisplayName>
6-
<Description xml:space="preserve">A Visual Studio extension that checks and notifies about available updates for the installed NuGet packages for the open solution.</Description>
7-
<MoreInfo>https://github.com/sboulema/NuGetMonitor</MoreInfo>
8-
<License>src\LICENSE</License>
9-
<GettingStartedGuide>https://github.com/sboulema/NuGetMonitor/blob/main/README.md</GettingStartedGuide>
10-
<ReleaseNotes>https://github.com/sboulema/NuGetMonitor/releases</ReleaseNotes>
11-
<Icon>src\NugetMonitor.ico</Icon>
12-
<PreviewImage>Screenshot.png</PreviewImage>
13-
<Tags>nuget, updates, notification</Tags>
14-
</Metadata>
15-
<Installation>
16-
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[17.0, 18.0)">
17-
<ProductArchitecture>amd64</ProductArchitecture>
18-
</InstallationTarget>
19-
</Installation>
20-
<Dependencies>
21-
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.5,)" />
22-
</Dependencies>
23-
<Prerequisites>
24-
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[17.0,18.0)" DisplayName="Visual Studio core editor" />
25-
</Prerequisites>
26-
<Assets>
27-
<Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" />
28-
</Assets>
3+
<Metadata>
4+
<Identity Id="NuGetMonitor.2a6fbffe-f3fd-4bf8-98cc-5ae2c833a1c7" Version="1.0" Language="en-US" Publisher="Samir Boulema" />
5+
<DisplayName>NuGetMonitor</DisplayName>
6+
<Description xml:space="preserve">A Visual Studio extension that checks and notifies about available updates for the installed NuGet packages for the open solution.</Description>
7+
<MoreInfo>https://github.com/sboulema/NuGetMonitor</MoreInfo>
8+
<License>Resources\LICENSE</License>
9+
<GettingStartedGuide>https://github.com/sboulema/NuGetMonitor/blob/main/README.md</GettingStartedGuide>
10+
<ReleaseNotes>https://github.com/sboulema/NuGetMonitor/releases</ReleaseNotes>
11+
<Icon>NugetMonitor.ico</Icon>
12+
<PreviewImage>Screenshot.png</PreviewImage>
13+
<Tags>nuget, updates, notification</Tags>
14+
</Metadata>
15+
<Installation>
16+
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[17.0, 18.0)">
17+
<ProductArchitecture>amd64</ProductArchitecture>
18+
</InstallationTarget>
19+
</Installation>
20+
<Dependencies>
21+
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.5,)" />
22+
</Dependencies>
23+
<Prerequisites>
24+
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[17.0,18.0)" DisplayName="Visual Studio core editor" />
25+
</Prerequisites>
26+
<Assets>
27+
<Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" />
28+
</Assets>
2929
</PackageManifest>

0 commit comments

Comments
 (0)