TestDll2.csproj 727 B

123456789101112131415161718192021222324
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net7.0</TargetFramework>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <Nullable>enable</Nullable>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <Compile Remove="DllforTesting\obj\Debug\.NETFramework,Version=v4.7.2.AssemblyAttributes.cs" />
  10. <Compile Remove="DllforTesting\Properties\AssemblyInfo.cs" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <None Include="DllforTesting\obj\Debug\.NETFramework,Version=v4.7.2.AssemblyAttributes.cs" />
  14. <None Include="DllforTesting\Properties\AssemblyInfo.cs" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <ProjectReference Include="DllforTesting\DllforTesting.csproj" />
  18. </ItemGroup>
  19. </Project>