17 lines
658 B
XML
Executable File
17 lines
658 B
XML
Executable File
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<!-- <OutputType>Library</OutputType> -->
|
|
<TargetFrameworks>net10.0;net462</TargetFrameworks>
|
|
<!-- <Nullable>enable</Nullable> -->
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<RootNamespace>ErrorsManager</RootNamespace>
|
|
<AssemblyName>ErrorsManager</AssemblyName>
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Include="ErrorsManager.vb" />
|
|
<Compile Include="Program.vb" />
|
|
<Compile Include="Tests.vb" />
|
|
</ItemGroup>
|
|
</Project> |