This commit is contained in:
Tommy Parnell
2016-10-20 10:08:13 -04:00
parent bfc2601f91
commit 7a3d92c957
8 changed files with 145 additions and 2 deletions

1
WebForms1/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
output

3
WebForms1/Dockerfile Normal file
View File

@@ -0,0 +1,3 @@
FROM microsoft/aspnet
ARG site_root=.
ADD ${site_root} /inetpub/wwwroot

View File

@@ -116,6 +116,7 @@
<Content Include="fonts\glyphicons-halflings-regular.woff" />
<Content Include="fonts\glyphicons-halflings-regular.ttf" />
<Content Include="fonts\glyphicons-halflings-regular.eot" />
<Content Include="Dockerfile" />
<None Include="Scripts\jquery-1.10.2.intellisense.js" />
<Content Include="Scripts\bootstrap.js" />
<Content Include="Scripts\bootstrap.min.js" />
@@ -224,7 +225,7 @@
<VisualStudio>
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
<WebProjectProperties>
<UseIIS>True</UseIIS>
<UseIIS>False</UseIIS>
<AutoAssignPort>True</AutoAssignPort>
<DevelopmentServerPort>53523</DevelopmentServerPort>
<DevelopmentServerVPath>/</DevelopmentServerVPath>

11
WebForms1/p.pubxml Normal file
View File

@@ -0,0 +1,11 @@
<Project ToolsVersion="$(VisualStudioVersion)" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<WebPublishMethod>FileSystem</WebPublishMethod>
<LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration>
<LastUsedPlatform>Any CPU</LastUsedPlatform>
<SiteUrlToLaunchAfterPublish />
<ExcludeApp_Data>False</ExcludeApp_Data>
<publishUrl>.\output</publishUrl>
<DeleteExistingFiles>True</DeleteExistingFiles>
</PropertyGroup>
</Project>