- Add Directory.Build.props with shared TargetFramework/Nullable/ImplicitUsings - Add Directory.Packages.props for centralized NuGet version management - Strip duplicated properties and Version attributes from all .csproj files - Fix Directory.Build.props TFM from net10 to net10.0 - Configure npm workspaces in root package.json (Journal.App) - Hoist node_modules to repo root with single lockfile - Add node_modules/ to .gitignore - Remove Journal.DevTool contents, keep as empty folder with .gitkeep - Remove Journal.DevTool from solution and npm workspaces Co-Authored-By: Oz <oz-agent@warp.dev>
20 lines
526 B
XML
20 lines
526 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="LLamaSharp" />
|
|
<PackageReference Include="LLamaSharp.Backend.Cpu" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Journal.Core\Journal.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Coach-Rules.txt" />
|
|
<EmbeddedResource Include="Daily-Check-In.txt" />
|
|
<EmbeddedResource Include="Evening-Review.txt" />
|
|
<EmbeddedResource Include="Weekly-Review.txt" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|