Skip to content

Commit

Permalink
Fin
Browse files Browse the repository at this point in the history
  • Loading branch information
na1307 committed Feb 11, 2024
1 parent 27ab6e9 commit 24ca05f
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 6 deletions.
6 changes: 5 additions & 1 deletion EncodingConverter/EncodingConverter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@
<Generator>VsixManifestGenerator</Generator>
<LastGenOutput>source.extension.cs</LastGenOutput>
</None>
<Content Include="..\LICENSE.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<IncludeInVSIX>true</IncludeInVSIX>
</Content>
<Content Include="Resources\Icon.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<IncludeInVSIX>true</IncludeInVSIX>
Expand Down Expand Up @@ -110,7 +114,7 @@
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(VSToolsPath)\VSSDK\Microsoft.VsSDK.targets" Condition="'$(VSToolsPath)' != ''" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
Expand Down
Binary file modified EncodingConverter/Resources/Icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions EncodingConverter/VSCommandTable.vsct
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,17 @@
<Buttons>
<Button guid="EncodingConverter" id="ConvertFileCommand" priority="0x0100" type="Button">
<Parent guid="EncodingConverter" id="FileRightClickGroup" />
<Icon guid="ImageCatalogGuid" id="FileEncodingDialog" />
<CommandFlag>IconIsMoniker</CommandFlag>
<Strings>
<ButtonText>Convert Encoding...</ButtonText>
<LocCanonicalName>.EncodingConverter.ConvertFileCommand</LocCanonicalName>
</Strings>
</Button>
<Button guid="EncodingConverter" id="ConvertProjectCommand" priority="0x0100" type="Button">
<Parent guid="EncodingConverter" id="ProjectRightClickGroup" />
<Icon guid="ImageCatalogGuid" id="FileEncodingDialog" />
<CommandFlag>IconIsMoniker</CommandFlag>
<Strings>
<ButtonText>Convert Encoding...</ButtonText>
<LocCanonicalName>.EncodingConverter.ConvertProjectCommand</LocCanonicalName>
Expand Down
4 changes: 2 additions & 2 deletions EncodingConverter/source.extension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ internal sealed partial class Vsix
{
public const string Id = "EncodingConverter.625f3018-1e5f-4b92-ad9c-08d2534b6021";
public const string Name = "Encoding Converter";
public const string Description = @"A Visual Studio extension to convert encoding of multiple files";
public const string Description = @"An extension that allows you to easily convert the encoding of multiple files.";
public const string Language = "en-US";
public const string Version = "1.0";
public const string Author = "Bluehill";
public const string Tags = "encoding";
public const string Tags = "encoding, converter, unicode, utf-8, utf8";
}
}
5 changes: 3 additions & 2 deletions EncodingConverter/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
<Metadata>
<Identity Id="EncodingConverter.625f3018-1e5f-4b92-ad9c-08d2534b6021" Version="1.0" Language="en-US" Publisher="Bluehill" />
<DisplayName>Encoding Converter</DisplayName>
<Description xml:space="preserve">A Visual Studio extension to convert encoding of multiple files</Description>
<Description xml:space="preserve">An extension that allows you to easily convert the encoding of multiple files.</Description>
<License>..\LICENSE.txt</License>
<Icon>Resources\Icon.png</Icon>
<PreviewImage>Resources\Icon.png</PreviewImage>
<Tags>encoding</Tags>
<Tags>encoding, converter, unicode, utf-8, utf8</Tags>
<Preview>true</Preview>
</Metadata>
<Installation>
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) [year] [fullname]
Copyright (c) 2024 Bluehill

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down

0 comments on commit 24ca05f

Please sign in to comment.