Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert changes on vsix manifest file #164

Merged
merged 1 commit into from
Feb 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/on_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ jobs:
(Get-Content -Path Dev16\publishManifest.json) |
ForEach-Object {$_ -Replace '1.0.0', '${{ needs.version.outputs.semver }}'} |
Set-Content -Path Dev16\publishManifest.json
(Get-Content -Path Dev16\source.extension.vsixmanifest) |
ForEach-Object {$_ -Replace '1.0.0', '${{ needs.version.outputs.semver }}'} |
Set-Content -Path Dev16\source.extension.vsixmanifest
(Get-Content -Path Dev16\Properties\AssemblyInfo.cs) |
ForEach-Object {$_ -Replace '1.0.0', '${{ needs.version.outputs.semver }}'} |
Set-Content -Path Dev16\Properties\AssemblyInfo.cs
Expand Down Expand Up @@ -121,6 +124,9 @@ jobs:
(Get-Content -Path Dev17\publishManifest.json) |
ForEach-Object {$_ -Replace '1.0.0', '${{ needs.version.outputs.semver }}'} |
Set-Content -Path Dev17\publishManifest.json
(Get-Content -Path Dev17\source.extension.vsixmanifest) |
ForEach-Object {$_ -Replace '1.0.0', '${{ needs.version.outputs.semver }}'} |
Set-Content -Path Dev17\source.extension.vsixmanifest
(Get-Content -Path Dev17\Properties\AssemblyInfo.cs) |
ForEach-Object {$_ -Replace '1.0.0', '${{ needs.version.outputs.semver }}'} |
Set-Content -Path Dev17\Properties\AssemblyInfo.cs
Expand Down
32 changes: 1 addition & 31 deletions Dev16/publishManifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,37 +7,7 @@
"description": "Metrics, insights, and time tracking automatically generated from your programming activity.",
"tags": [ "Analytics", "Coding","Productivity", "Productivity Tool", "Time Tracking", "Timer", "Code Time", "Metrics", "Time Tracker", "Reports" ],
"vsixId": "52d9c3ff-c893-408e-95e4-d7484ec7fa47",
"version": "1.0.0",
"installTargets": [
{
"sku": "Microsoft.VisualStudio.Community",
"version": "[15.0,17.0)"
},
{
"sku": "Microsoft.VisualStudio.Pro",
"version": "[15.0,17.0)"
},
{
"sku": "Microsoft.VisualStudio.Enterprise",
"version": "[15.0,17.0)"
},
{
"sku": "Microsoft.VisualStudio.IntegratedShell",
"version": "[15.0,17.0)"
},
{
"sku": "Microsoft.VisualStudio.Ultimate",
"version": "[15.0,17.0)"
},
{
"sku": "Microsoft.VisualStudio.Premium",
"version": "[15.0,17.0)"
},
{
"sku": "Microsoft.VisualStudio.VSLS",
"version": "[15.0,17.0)"
}
]
"version": "1.0.0"
},

"overview": "OVERVIEW.md",
Expand Down
20 changes: 20 additions & 0 deletions Dev16/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
<?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 Publisher="WakaTime" Version="1.0.0" Id="52d9c3ff-c893-408e-95e4-d7484ec7fa47" Language="en-US" />
<DisplayName>WakaTime</DisplayName>
<Description xml:space="preserve">Metrics, insights, and time tracking automatically generated from your programming activity.</Description>
<MoreInfo>https://github.com/wakatime/visualstudio-wakatime</MoreInfo>
<License>LICENSE</License>
<Icon>Assets\wakatime-120.png</Icon>
<PreviewImage>Assets\dashboard.png</PreviewImage>
</Metadata>

<Installation>
<InstallationTarget Version="[15.0,17.0)" Id="Microsoft.VisualStudio.Community" />
<InstallationTarget Version="[15.0,17.0)" Id="Microsoft.VisualStudio.Pro" />
<InstallationTarget Version="[15.0,17.0)" Id="Microsoft.VisualStudio.Enterprise" />
<InstallationTarget Version="[15.0,17.0)" Id="Microsoft.VisualStudio.IntegratedShell" />
<InstallationTarget Version="[15.0,17.0)" Id="Microsoft.VisualStudio.Ultimate" />
<InstallationTarget Version="[15.0,17.0)" Id="Microsoft.VisualStudio.Premium" />
<InstallationTarget Version="[15.0,17.0)" Id="Microsoft.VisualStudio.VSLS" />
</Installation>

<Dependencies>
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.8,)" />
<Dependency Id="Microsoft.VisualStudio.MPF.14.0" DisplayName="Visual Studio MPF 14.0" d:Source="Installed" Version="[14.0,17.0)" />
Expand Down
16 changes: 1 addition & 15 deletions Dev17/publishManifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,7 @@
"description": "Metrics, insights, and time tracking automatically generated from your programming activity.",
"tags": [ "Analytics", "Coding","Productivity", "Productivity Tool", "Time Tracking", "Timer", "Code Time", "Metrics", "Time Tracker", "Reports" ],
"vsixId": "41DB9DFA-9F21-45A4-B111-22FBD1C3AD94",
"version": "1.0.0",
"installTargets": [
{
"sku": "Microsoft.VisualStudio.Community",
"version": "[17.0,18.0)"
},
{
"sku": "Microsoft.VisualStudio.Pro",
"version": "[17.0,18.0)"
},
{
"sku": "Microsoft.VisualStudio.Enterprise",
"version": "[17.0,18.0)"
}
]
"version": "1.0.0"
},

"overview": "OVERVIEW.md",
Expand Down
22 changes: 22 additions & 0 deletions Dev17/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
<?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 Publisher="WakaTime" Version="1.0.0" Id="41DB9DFA-9F21-45A4-B111-22FBD1C3AD94" Language="en-US" />
<DisplayName>WakaTime</DisplayName>
<Description xml:space="preserve">Metrics, insights, and time tracking automatically generated from your programming activity.</Description>
<MoreInfo>https://github.com/wakatime/visualstudio-wakatime</MoreInfo>
<License>LICENSE</License>
<Icon>Assets\wakatime-120.png</Icon>
<PreviewImage>Assets\dashboard.png</PreviewImage>
</Metadata>

<Installation>
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[17.0,18.0)">
<ProductArchitecture>amd64</ProductArchitecture>
</InstallationTarget>
<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="[17.0,18.0)">
<ProductArchitecture>amd64</ProductArchitecture>
</InstallationTarget>
<InstallationTarget Id="Microsoft.VisualStudio.Enterprise" Version="[17.0,18.0)">
<ProductArchitecture>amd64</ProductArchitecture>
</InstallationTarget>
</Installation>

<Dependencies>
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.8,)" />
<Dependency Id="Microsoft.VisualStudio.MPF.16.0" DisplayName="Visual Studio MPF 16.0" d:Source="Installed" Version="[16.0,17.0)" />
Expand Down
Loading