renam home.aspx to Default.aspx

This should hopefully start the page automatically when one runs the project.
This commit is contained in:
Andreas Zweili 2018-08-19 17:31:46 +02:00
parent 3d39a05139
commit 1a2c02baf2
4 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="home.aspx.cs" Inherits="Server.home" %>
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Server.home" %>
<!DOCTYPE html>

View File

@ -88,7 +88,7 @@
</ItemGroup>
<ItemGroup>
<Content Include="Global.asax" />
<Content Include="home.aspx" />
<Content Include="Default.aspx" />
<Content Include="Service.svc" />
<Content Include="Web.config" />
</ItemGroup>
@ -110,12 +110,12 @@
</Compile>
<Compile Include="Helper\GenerateData.cs" />
<Compile Include="Helper\MappingExtensions.cs" />
<Compile Include="home.aspx.cs">
<DependentUpon>home.aspx</DependentUpon>
<Compile Include="Default.aspx.cs">
<DependentUpon>Default.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="home.aspx.designer.cs">
<DependentUpon>home.aspx</DependentUpon>
<Compile Include="Default.aspx.designer.cs">
<DependentUpon>Default.aspx</DependentUpon>
</Compile>
<Compile Include="IService.cs" />
<Compile Include="Models\City.cs" />