initial tinkerings

This commit is contained in:
2024-06-16 15:10:54 -05:00
parent a057626c0c
commit b1cb852cb1
14 changed files with 1193 additions and 0 deletions

24
Directory.Build.props Normal file
View File

@@ -0,0 +1,24 @@
<Project>
<Import Project="Paths.user" Condition="Exists('Paths.user')" />
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<LangVersion>latest</LangVersion>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<LangVersion>latest</LangVersion>
<ImplicitUsings>false</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<Content Include="Definition.json" CopyToOutputDirectory="Always" />
<PackageReference Include="BUTR.Harmony.Analyzer" Version="1.0.1.50">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>