- 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>
16 lines
834 B
XML
16 lines
834 B
XML
<Project>
|
|
<PropertyGroup>
|
|
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="10.0.3" />
|
|
<PackageVersion Include="Microsoft.Data.Sqlite.Core" Version="10.0.3" />
|
|
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.3" />
|
|
<PackageVersion Include="SQLitePCLRaw.bundle_e_sqlcipher" Version="2.1.11" />
|
|
<PackageVersion Include="NAudio" Version="2.2.1" />
|
|
<PackageVersion Include="Whisper.net" Version="1.9.0" />
|
|
<PackageVersion Include="Whisper.net.Runtime" Version="1.9.0" />
|
|
<PackageVersion Include="LLamaSharp" Version="0.26.0" />
|
|
<PackageVersion Include="LLamaSharp.Backend.Cpu" Version="0.26.0" />
|
|
</ItemGroup>
|
|
</Project> |