Web应用程序项目配置为使用IIS但无法找到Web服务器 - Visual Studio

时间:2015-12-18 14:20:39

标签: c# asp.net visual-studio iis visual-studio-2012

我知道有很多关于同一主题的SO问题但是我无法使用他们的任何解决方案进行修复。

我的环境被搞砸了,所以我删除了所有内容并从源代码控制中获取最新信息。

当加载sln时,所有项目加载都很好,除了根本没有加载的web项目,给我错误

  

C:\ Tungsten \ Tungsten \ Tungsten.web \ Tungsten.web.csproj:错误:Web应用程序项目Tungsten.web配置为使用IIS。 Web服务器' http://localhost:2025/'无法找到。

  1. 我的.csproj将UseIISExpress设置为false,并将UseIIS设置为true
  2. 我删除了.csproj.user文件
  3. 包括.csproj中的相关位

      <ProjectExtensions>
        <VisualStudio>
          <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
            <WebProjectProperties>
              <UseIIS>True</UseIIS>
              <AutoAssignPort>True</AutoAssignPort>
              <DevelopmentServerPort>2025</DevelopmentServerPort>
              <DevelopmentServerVPath>/</DevelopmentServerVPath>
              <IISUrl>http://localhost:2025/</IISUrl>
              <NTLMAuthentication>False</NTLMAuthentication>
              <UseCustomServer>False</UseCustomServer>
              <CustomServerUrl>
              </CustomServerUrl>
              <SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
            </WebProjectProperties>
          </FlavorProperties>
      </VisualStudio>
    

      <PropertyGroup>
        <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
        <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
        <ProductVersion>
        </ProductVersion>
        <SchemaVersion>2.0</SchemaVersion>
        <ProjectGuid>{D671F45E-5436-448C-9B10-664DA296095A}</ProjectGuid>
        <ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
        <OutputType>Library</OutputType>
        <AppDesignerFolder>Properties</AppDesignerFolder>
        <RootNamespace>Tungsten.web</RootNamespace>
        <AssemblyName>Tungsten.web</AssemblyName>
        <TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
        <MvcBuildViews>false</MvcBuildViews>
        <UseIISExpress>false</UseIISExpress>
        <IISExpressSSLPort />
        <IISExpressAnonymousAuthentication />
        <IISExpressWindowsAuthentication />
        <IISExpressUseClassicPipelineMode />
        <SccProjectName>SAK</SccProjectName>
        <SccLocalPath>SAK</SccLocalPath>
        <SccAuxPath>SAK</SccAuxPath>
        <SccProvider>SAK</SccProvider>
        <UseGlobalApplicationHostFile />
        <TargetFrameworkProfile />
      </PropertyGroup>
    

0 个答案:

没有答案