0

我是 SDK 样式项目格式的新手,我只有几个 NuGet PackageReferences。一切正常,直到我认为我弄乱了我支持的平台/构建配置。

构建成功。但是在IDE中编辑这个东西很痛苦。 具有错误文件列表的解决方案资源管理器

这是我的 *.csproj 文件内容:


<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <TargetFrameworks>net40;net48;</TargetFrameworks>
    <Platforms>x64</Platforms>
    <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
    <Authors>myself</Authors>
  </PropertyGroup>

  <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net40|x86'">
    <PlatformTarget>x86</PlatformTarget>
  </PropertyGroup>

  <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net40|x64'">
    <PlatformTarget>x64</PlatformTarget>
  </PropertyGroup>

  <ItemGroup>
    <PackageReference Include="Accusoft.ImageGear.PDF" Version="24.14.0"   />
    <PackageReference Include="Accusoft.ImageGear.Recognition" Version="24.14.0"  />
  </ItemGroup>

  <ItemGroup>
    <ProjectReference Include="..\Consoto.SimpleProj.Core\Consoto.SimpleProj.Core.csproj" />
  </ItemGroup>

  <ItemGroup>
    <NativeLibs Remove="Helpers.cs" />
  </ItemGroup>

  <ItemGroup>
    <NativeLibs Remove="README.md" />
  </ItemGroup>

  <ItemGroup>
    <NativeLibs Remove="Properties\Settings.settings" />
  </ItemGroup>

  <ItemGroup>
    <Compile Update="Properties\Settings.Designer.cs">
      <DesignTimeSharedInput>True</DesignTimeSharedInput>
      <AutoGen>True</AutoGen>
      <DependentUpon>Settings.settings</DependentUpon>
    </Compile>
  </ItemGroup>

  <ItemGroup>
    <None Update="Properties\Settings.settings">
      <Generator>SettingsSingleFileGenerator</Generator>
      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
    </None>
  </ItemGroup>

</Project>

这是实际的项目目录:

项目目录的 Windows 文件资源管理器视图

4

0 回答 0