5080d2878c
* add slnx and generate from it (but got errors) * can generate slnx * Can generate hostapp specific slnx * use slnx for build and clean up * Revert as we're still on 8 SDK * really not use slnx for builds * Make the code generate SLNs too * use existing consts * add grasshopper * Don't generate old slns for slugs * add SLNX info to the readme * forgot revit 26
18 lines
581 B
XML
18 lines
581 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<Configurations>Debug;Release;Local</Configurations>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Bullseye" />
|
|
<PackageReference Include="Glob" />
|
|
<PackageReference Include="Microsoft.Build" />
|
|
<PackageReference Include="Microsoft.VisualStudio.SolutionPersistence" />
|
|
<PackageReference Include="Semver" />
|
|
<PackageReference Include="SimpleExec" />
|
|
</ItemGroup>
|
|
</Project>
|