我有一个.NET Framework类库,我希望能够为.NET Core 2.1和.NET Framework构建。有loads of blogs on this topic,但他们都假设您的.csproj文件中有一个TargetFramework
标记,您可以将其转换为复数,然后使用分号描述。< / p>
我的.csproj文件没有TargetFrameworks
标记。
确实有这个:
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{...}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>LibraryName</RootNamespace>
<AssemblyName>LibraryName</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
如何为.NET Core 2.1编译它?