Skip to content

Commit

Permalink
Merge pull request #80 from PentiaLabs/issue-79
Browse files Browse the repository at this point in the history
Fixes #79
  • Loading branch information
istern authored Mar 3, 2017
2 parents 6f3f990 + fc6263d commit f11cdbf
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<None Include="Properties\PublishProfiles\Local.pubxml" />
</ItemGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
Expand Down Expand Up @@ -100,4 +101,4 @@
<Target Name="AfterBuild">
</Target>
-->
</Project>
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is used by the publish/package process of your Web project. You can customize the behavior of this process
by editing this MSBuild file. In order to learn more about this please visit http://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\..\..\..\publishsettings.targets"/>

<PropertyGroup>
<WebPublishMethod>FileSystem</WebPublishMethod>
<LastUsedBuildConfiguration>Debug</LastUsedBuildConfiguration>
<LastUsedPlatform>Any CPU</LastUsedPlatform>
<SiteUrlToLaunchAfterPublish />
<LaunchSiteAfterPublish>True</LaunchSiteAfterPublish>
<ExcludeApp_Data>False</ExcludeApp_Data>
<DeleteExistingFiles>False</DeleteExistingFiles>
</PropertyGroup>
</Project>
3 changes: 2 additions & 1 deletion generators/app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ module.exports = class extends yeoman {
type: 'confirm',
name: 'installDeps',
message: 'Would you like to auto-install Pentia tools?',
default: true,
default: false,
when: function(answers) {
return answers.SolutionType === 'pentiahelix';
}
Expand Down Expand Up @@ -163,6 +163,7 @@ module.exports = class extends yeoman {
this._copyToEnvironmentProject('Project/Environment/web.config', 'web.config');
this._copyToEnvironmentProject('Project/Environment/packages.config', 'packages.config');
this._copyToEnvironmentProject('Project/Environment/Properties/AssemblyInfo.cs', 'Properties/AssemblyInfo.cs');
this._copyToEnvironmentProject('Project/Environment/Properties/PublishProfiles/local.pubxml', 'Properties/PublishProfiles/local.pubxml');
this._copyToEnvironmentProject('Project/Environment/Project.Environment.csproj', 'Project.Environment.csproj');

this._copyTemplateFile('_gulpfile.js', 'gulpfile.js');
Expand Down

0 comments on commit f11cdbf

Please sign in to comment.