Files
Csharp/C#核心/Lesson13_继承-里氏替换原则练习/Lesson13_继承-里氏替换原则练习.csproj
T

12 lines
318 B
XML
Raw Normal View History

2025-09-08 15:38:01 +08:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
2025-09-09 15:40:24 +08:00
<RootNamespace>Lesson13_继承_里氏替换原则练习</RootNamespace>
2025-09-08 15:38:01 +08:00
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>