gpt4 book ai didi

c# - 如何在 .NET Standard 2.0 项目上实现 Dotfuscator?

转载 作者:行者123 更新时间:2023-11-30 15:53:41 25 4
gpt4 key购买 nike

我正在将现有的 Xamarin 应用程序从 PCL 升级到 .NET Standard 2.0。我有几个子项目,如业务、数据、BDO 等,它们是 PCL,我已经能够使用 this tutorial 将它们更新到 .NET Standard 2.0。 .

但是,我使用 this Xamarin Blog 在我所有的 PCL 项目上实现了 Dotufscator|实现,但它似乎不能作为 .NET Standard 2.0 项目的指令。 DLL 未被混淆,生成输出中未显示“正在运行 Dotfuscator”消息。

我目前将 Dotufcator 添加到 .NET Standard 2.0 proj 文件的尝试如下:

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<DotfuscatorXamarinCliPath>C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\IDE\Extensions\PreEmptiveSolutions\DotfuscatorCE\dotfuscatorCLI.exe</DotfuscatorXamarinCliPath>
<DotfuscatorXamarinConfigFileName>DotfuscatorConfig.xml</DotfuscatorXamarinConfigFileName>
<DotfuscatorXamarinGenerateNewConfigFile>true</DotfuscatorXamarinGenerateNewConfigFile>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<OutputPath>bin\Debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DotfuscatorXamarinEnabled>true</DotfuscatorXamarinEnabled>
<OutputPath>bin\Release\</OutputPath>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
</ItemGroup>
<ItemGroup>
<None Include="DotfuscatorConfig.xml" />
</ItemGroup>

<Import Project="..\PreEmptive.Dotfuscator.Xamarin.targets" />
</Project>

有人能帮忙吗?谢谢

最佳答案

作为免责声明,我应该提一下,作为 Dotfuscator 团队的开发人员和技术作家,我回答这篇帖子是工作的一部分。我也写了the blog post you linked to ,很高兴你发现它在保护你的 Xamarin 应用方面很有值(value)。

首先,我应该澄清博文中的歧义。此处显示的 Dotfuscator-Xamarin MSBuild 集成仅旨在集成到构建为打包格式的特定于平台的 Xamarin 项目中,例如构建 APK 的 Android 项目。不支持直接集成到可移植类库 (PCL) 或 .NET 标准库等库项目中。

请注意,将 Dotfuscator 集成到 Xamarin 项目中将保护源自您的解决方案的所有打包程序集,因此您的库代码仍将受到保护。例如,如果将 Dotfuscator 集成到 MyApp.Android.csproj 中,它引用了 A.csprojB.csprojC .csproj,Dotfuscator 将在打包到 APK 中时保护所有四个项目的程序集。这种方法可以提供更强的保护,并且不需要您为每个库单独运行 Dotfuscator,从而节省您的构建和配置时间。

如果您使用商业许可的 Dotfuscator 专业版,版本 4.37.0 包括 a new MSBuild integration .新的集成更易于设置,修复了一些已知问题, future 将是我们推荐使用 Dotfuscator 的主要方式,适用于各种项目,而不仅仅是 Xamarin。我建议将 Dotfuscator 升级到此版本并从 .NET Standard 项目中删除 Dotfuscator-Xamarin MSBuild 集成。然后,将新的 MSBuild 集成添加到特定于平台的 Xamarin 项目中;有关详细信息,请参阅 Xamarin Getting Started page我们的用户指南。

如果您使用的是 Dotfuscator Community Edition(包含在所有 Visual Studio 版本中)或更早的专业版,请继续使用 the Dotfuscator-Xamarin MSBuild integration博客文章中提到。我建议您从 .NET 标准库中删除集成,而是将其添加到引用它们的特定于平台的 Xamarin 项目中。请注意,当集成到引用 .NET Standard 库的 Xamarin 项目时,存在一个已知问题,即第一次构建将失败(因为集成不理解 .NET Standard 使用的最小项目格式);见this answer解决方法。后续构建将正常进行,无需解决方法。

关于c# - 如何在 .NET Standard 2.0 项目上实现 Dotfuscator?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51930020/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com