在发布模式下使用ImageResizer FastScaling构建时出现问题

时间:2018-07-06 07:52:31

标签: visual-studio imageresizer

添加FastScaling 64位版本后,我无法在发布模式(本地和外部)下构建项目。在尝试使用TeamCity构建解决方案时,我注意到了问题。在本地调试模式下,它可以正常工作。

我得到的错误是“无法加载文件或程序集'ImageResizer.Plugins.FastScaling'或其依赖项之一。试图加载格式不正确的程序。”。

我正在尝试通过安装VS2015和VC ++ 2015可再发行的64位来构建解决方案。我还将项目的平台目标设置为x64,并选中了“将IIS Express的64位版本用于网站和项目。”框。

proj文件中的设置如下:

<PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProductVersion></ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>guid</ProjectGuid>
    <ProjectTypeGuids>guid</ProjectTypeGuids>
    <OutputType>Library</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>ProjectName.Web</RootNamespace>
    <AssemblyName>ProjectName.Web</AssemblyName>
    <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
    <MvcBuildViews>true</MvcBuildViews>
    <UseIISExpress>true</UseIISExpress>
    <FileUpgradeFlags></FileUpgradeFlags>
    <UpgradeBackupLocation></UpgradeBackupLocation>
    <OldToolsVersion>12.0</OldToolsVersion>
    <IISExpressSSLPort />
    <IISExpressAnonymousAuthentication>disabled</IISExpressAnonymousAuthentication>
    <IISExpressWindowsAuthentication>enabled</IISExpressWindowsAuthentication>
    <IISExpressUseClassicPipelineMode>false</IISExpressUseClassicPipelineMode>
    <TargetFrameworkProfile />
    <MvcProjectUpgradeChecked>true</MvcProjectUpgradeChecked>
    <UseGlobalApplicationHostFile />
    <NuGetPackageImportStamp></NuGetPackageImportStamp>
    <Use64BitIISExpress />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>bin\</OutputPath>
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>bin\</OutputPath>
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <Prefer32Bit>false</Prefer32Bit>
    <PlatformTarget>x64</PlatformTarget>
</PropertyGroup>

有什么可以尝试的指针吗?

1 个答案:

答案 0 :(得分:0)

以某种方式获得32位FastScaling而不是64位,反之亦然。检查/ bin目录,查看实际上正在复制的目录。