在.NET中进行多目标定位,但没有“TargetFramework”标记

时间:2018-06-04 14:00:07

标签: c# .net visual-studio .net-core .net-4.5

我有一个.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编译它?

0 个答案:

没有答案