Skip to content

Commit

Permalink
v1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
adamecr committed Dec 29, 2018
1 parent add15c2 commit a1abfef
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion RadProjectsExtension/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?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="RadProjectsExtension.396b99e3-35af-4dc6-8e72-2cd8d2681e92" Version="1.2.1" Language="en-US" Publisher="Radek Adamec" />
<Identity Id="RadProjectsExtension.396b99e3-35af-4dc6-8e72-2cd8d2681e92" Version="1.2.2" Language="en-US" Publisher="Radek Adamec" />
<DisplayName>RadProjectsExtension</DisplayName>
<Description xml:space="preserve">Visual Studio 2017 extension helper for RAD projects.
Currently supports just extending the solutions by templates (in reality used to add build support projects and adjust the build dependencies)</Description>
Expand Down
3 changes: 1 addition & 2 deletions RadProjectsExtension/utils/FileUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public static void DirectoryCopy(
//copy sub directories
foreach (var subDir in di.GetDirectories())
{
DirectoryCopy(subDir.FullName, destDirectoryName.AddPath(subDir.Name), true,overwrite);
DirectoryCopy(subDir.FullName, destDirectoryName.AddPath(subDir.Name), true,overwrite,doNotOverwriteFileNames);
}

}
Expand All @@ -61,7 +61,6 @@ public static void FileCopy(string sourceFileName, string destFileName, bool ove
{
if (sourceFileName == null) throw new ArgumentNullException(nameof(sourceFileName));
if (destFileName==null) throw new ArgumentNullException(nameof(destFileName));

if (!overwrite || !File.Exists(destFileName))
{
File.Copy(sourceFileName,destFileName,false);
Expand Down
7 changes: 7 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## Known Issues ##
- Solution console: The color of the input text is not sometimes working properly

## [1.2.2] - 2018-12-29 ##

### Fixed ###
- Do not ovewrite file names applied to subfolders as well


## [1.2.1] - 2018-12-11 ##

### Fixed ###
Expand Down Expand Up @@ -42,6 +48,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Initial release
- Solution (Project) Templates functionality

[1.2.2]: https://github.com/adamecr/RadProjectsExtension/compare/v1.2.1...v1.2.2
[1.2.1]: https://github.com/adamecr/RadProjectsExtension/compare/v1.2.0...v1.2.1
[1.2.0]: https://github.com/adamecr/RadProjectsExtension/compare/v1.1.0...v1.2.0
[1.1.0]: https://github.com/adamecr/RadProjectsExtension/compare/v1.0.1...v1.1.0
Expand Down

0 comments on commit a1abfef

Please sign in to comment.