diff options
-rw-r--r-- | projecttemplates/projecttemplates.proj | 2 | ||||
-rw-r--r-- | vsix/vsix.proj | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/projecttemplates/projecttemplates.proj b/projecttemplates/projecttemplates.proj index 5494463..9df3fa8 100644 --- a/projecttemplates/projecttemplates.proj +++ b/projecttemplates/projecttemplates.proj @@ -3,7 +3,7 @@ <Import Project="ProjectTemplates.props"/> <PropertyGroup> - <ProjectTemplateMaxPath Condition=" '$(ProjectTemplateMaxPath)' == '' ">50</ProjectTemplateMaxPath> + <ProjectTemplateMaxPath Condition=" '$(ProjectTemplateMaxPath)' == '' ">6</ProjectTemplateMaxPath> <LayoutDependsOn> BuildUnifiedProduct; diff --git a/vsix/vsix.proj b/vsix/vsix.proj index ffa1995..dcd0e85 100644 --- a/vsix/vsix.proj +++ b/vsix/vsix.proj @@ -68,7 +68,8 @@ <VSGalleryVsixSources Include="@(VSGalleryVsixZipSources)"> <TopLevelTemplate>%(FileName)</TopLevelTemplate> <VSGalleryVsix>$(DropsRoot)$(ProductName) %(FileName)-$(BuildVersion).vsix</VSGalleryVsix> - <TargetPath>$(IntermediatePath)%(FileName).vsix\%(RecursiveDir)%(FileName)%(Extension)</TargetPath> + <!-- The A in the path below used to be %(FileName), but to fit inside MAX_PATH when VS expands, we shorten it. --> + <TargetPath>$(IntermediatePath)%(FileName).vsix\%(RecursiveDir)A%(Extension)</TargetPath> </VSGalleryVsixSources> <VSGalleryVsixSources Include="@(ProjectTemplateZipTargets->'$(ProjectRoot)projecttemplates\%(FileName).vsixmanifest')"> |