123456789101112131415161718192021222324 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net7.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- </PropertyGroup>
- <ItemGroup>
- <Compile Remove="DllforTesting\obj\Debug\.NETFramework,Version=v4.7.2.AssemblyAttributes.cs" />
- <Compile Remove="DllforTesting\Properties\AssemblyInfo.cs" />
- </ItemGroup>
- <ItemGroup>
- <None Include="DllforTesting\obj\Debug\.NETFramework,Version=v4.7.2.AssemblyAttributes.cs" />
- <None Include="DllforTesting\Properties\AssemblyInfo.cs" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="DllforTesting\DllforTesting.csproj" />
- </ItemGroup>
- </Project>
|