mirror of
https://github.com/tonytins/tomas.git
synced 2025-05-05 22:24:50 -04:00
- Switched to file-scoped namespaces - Enabled Implicit Usings and Nullable Kernal was migrated too but is unusable, at the moment. Stick with developing or testing from the terminal emulator.
15 lines
445 B
XML
15 lines
445 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Tomas.Common\Tomas.Common.csproj" />
|
|
<ProjectReference Include="..\Tomas.Interface\Tomas.Interface.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|