46 lines
1.5 KiB
XML
46 lines
1.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net9</TargetFrameworks>
|
|
<RootNamespace>lib</RootNamespace>
|
|
<AssemblyVersion>0.0.1.0</AssemblyVersion>
|
|
<FileVersion>0.0.1.0</FileVersion>
|
|
<Copyright>2003..2025 Marc Hernandez</Copyright>
|
|
<Description>A core set of libraries</Description>
|
|
<Platforms>AnyCPU;x64</Platforms>
|
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<LangVersion>14.0</LangVersion>
|
|
<!--
|
|
I Want to turn this on, but cant yet. Implementing nullability 1 file at a gime
|
|
<Nullable>enable</Nullable>
|
|
-->
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<NoWarn>$(NoWarn);SYSLIB0050;CS8981; CS8632</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.14.0" />
|
|
<PackageReference Include="Optional" Version="4.0.0" />
|
|
<PackageReference Include="Optional.Async" Version="1.3.0" />
|
|
<PackageReference Include="System.Collections.Immutable" Version="9.0.9" />
|
|
<PackageReference Include="System.ValueTuple" Version="4.6.1" />
|
|
|
|
<PackageReference Include="Microsoft.Diagnostics.NETCore.Client" Version="0.2.621003" />
|
|
<PackageReference Include="Microsoft.Diagnostics.Tracing.TraceEvent" Version="3.1.24" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Properties\" />
|
|
<Folder Include="reflect\" />
|
|
<Folder Include="fsm\" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<None Remove="fsm\" />
|
|
</ItemGroup>
|
|
</Project>
|