我已经在我的项目中正常工作了。我会告诉你我是怎么做到的,尽管这可能不是最简单或最直接的方法。
在我们开始之前,能够检查您的缩小文件是否包含在 Azure 部署包中而不实际部署会很有帮助。这很容易做到。该.cspkg
文件实际上是一个 zip 格式的文件,因此您可以使用任何 zip 存档器打开它。(我喜欢为此使用 7Zip,因为右键单击 -> 打开存档命令不需要您重命名文件,但您可以使用 Windows 资源管理器、WinRAR 等。)在里面.cspkg
你会看到另一个大文件一个.cssx
扩展。那也是一个zip文件。在其中,.cssx
您会找到一个sitesroot
文件夹,其中包含您正在部署的每个网站的子目录,其中包含您所有的实际网站文件。因此,您可以在那里四处逛逛,看看哪些文件正在部署到 Azure。
首先,尝试为您的 Web 项目编辑项目文件(包含所有 Javascript/CSS 文件的文件)。您可以使用记事本,或者在 Visual Studio 中右键单击项目,选择“卸载项目”,然后再次右键单击并选择“编辑”。在项目文件中,插入如下部分:
<ItemGroup>
<!-- Copy over all the minified CSS & JS to the output directory-->
<Content Include="**\*.min.css" />
<Content Include="**\*.min.js" />
</ItemGroup>
然后重新加载项目,重新打包,看看你的文件是否包含在.cspkg
文件中。如果他们是,那么你就完成了。
如果没有,还有其他几件事需要检查。您的缩小可能未在正确的构建阶段运行。我的缩小目标如下所示:
<Target Name="PrepWebApp" Condition="$(Configuration)=='Release'" AfterTargets="AfterBuild">
如果这仍然不起作用,并且您的 Web 角色中有多个站点和/或虚拟应用程序,则可能是所有站点的打包步骤都没有运行。因此,当您将项目打包以部署到 Azure 时,它可能仍未运行缩小步骤(以及 web.config 转换和其他一些事情)。如果是这种情况,请参阅此博客文章以了解解决方法。
以防万一该博客文章消失,我将在此处复制最相关的部分。您可以将其放入您的网络角色的 .ccproj 文件中(更改适当的位以匹配您的项目结构):
<PropertyGroup>
<!-- Inject the publication of "secondary" sites into the Windows Azure build/project packaging process. -->
<CoreBuildDependsOn>
CleanSecondarySites;
PublishSecondarySites;
$(CoreBuildDependsOn)
</CoreBuildDependsOn>
<!-- This is the directory within the web application project directory to which the project will be "published" for later packaging by the Azure project. -->
<SecondarySitePublishDir>azure.publish\</SecondarySitePublishDir>
</PropertyGroup>
<!-- These SecondarySite items represent the collection of sites (other than the web application associated with the role) that need special packaging. -->
<ItemGroup>
<SecondarySite Include="..\WebApplication1\WebApplication1.csproj" />
<SecondarySite Include="..\WebApplication2\WebApplication2.csproj" />
</ItemGroup>
<Target Name="CleanSecondarySites">
<RemoveDir Directories="%(SecondarySite.RootDir)%(Directory)$(SecondarySitePublishDir)" />
</Target>
<Target Name="PublishSecondarySites" Condition="'$(PackageForComputeEmulator)' == 'true'
Or '$(IsExecutingPublishTarget)' == 'true' ">
<!--
Execute the Build (and more importantly the _WPPCopyWebApplication) target to "publish" each secondary web application project.
Note the setting of the WebProjectOutputDir property; this is where the project will be published to be later picked up by CSPack.
-->
<MSBuild Projects="%(SecondarySite.Identity)" Targets="Build;_WPPCopyWebApplication" Properties="Configuration=$(Configuration);Platform=$(Platform);WebProjectOutputDir=$(SecondarySitePublishDir)" />