0

ソリューションにasp.net mvc 3プロジェクトと別のBusinessLayerプロジェクトが含まれています。ローカルのgitリポジトリを介してサイトをAzureにデプロイしようとすると、次のエラーが発生します'<remote_path>\BusinessLayer\BusinessLayer.csproj' is not a deployable project.。その他の情報はログに提供されません。サイトは私のローカルサーバーに完全にデプロイされます。したがって、このエラーが発生する理由を少なくともいくつか知りたいと思います。前もって感謝します。

必要に応じて、これが私の.csprojファイルです。

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProductVersion>8.0.30703</ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>{31F2F6FE-10D8-4510-AC61-CBE1962D3940}</ProjectGuid>
    <OutputType>Library</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>BusinessLayer</RootNamespace>
    <AssemblyName>BusinessLayer</AssemblyName>
    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
    <FileAlignment>512</FileAlignment>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>bin\Debug\</OutputPath>
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>bin\Release\</OutputPath>
    <DefineConstants>TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="MongoDB.Bson">
      <HintPath>..\..\Libs\MongoDB.Bson.dll</HintPath>
    </Reference>
    <Reference Include="MongoDB.Driver">
      <HintPath>..\..\Libs\MongoDB.Driver.dll</HintPath>
    </Reference>
    <Reference Include="System" />
    <Reference Include="System.Core" />
    <Reference Include="System.Drawing" />
    <Reference Include="System.Xml.Linq" />
    <Reference Include="System.Data.DataSetExtensions" />
    <Reference Include="Microsoft.CSharp" />
    <Reference Include="System.Data" />
    <Reference Include="System.Xml" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="Battle.cs" />
    <Compile Include="BattleManager.cs" />
    <Compile Include="BattlePlace.cs" />
    <Compile Include="Helpers\ConvertHelper.cs" />
    <Compile Include="Helpers\ImageHelper.cs" />
    <Compile Include="Message.cs" />
    <Compile Include="Picture.cs" />
    <Compile Include="Place.cs" />
    <Compile Include="PlaceManager.cs" />
    <Compile Include="Subject.cs" />
    <Compile Include="User.cs" />
    <Compile Include="Helpers\DBHelper.cs" />
    <Compile Include="Properties\AssemblyInfo.cs" />
  </ItemGroup>
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
       Other similar extension points exist, see Microsoft.Common.targets.
  <Target Name="BeforeBuild">
  </Target>
  <Target Name="AfterBuild">
  </Target>
  -->
</Project>
4

2 に答える 2

1

プロジェクトのルートにある .deployment ファイルを使用して、デプロイするプロジェクトを正確に Azure に伝える必要がある場合があります。例えば

[config]
project = WebProject/WebProject.csproj

詳しくはこちらのページをご覧ください。

于 2013-02-23T22:20:51.987 に答える
0

Web サイト プロジェクトではなく、BusinessLayer プロジェクトをデプロイしようとしているようです。MVC サイト プロジェクトに BusinessLayer への参照がある限り、Web サイトをデプロイするだけです。BusinessLayer は参照として含まれます。BusinessLayer はアプリケーションではなくライブラリであるため、単独でデプロイすることはできません。

于 2013-02-23T16:50:19.640 に答える