mirror of
https://github.com/davidkaya/aryx.git
synced 2026-08-25 12:23:57 +02:00
- Move 15 renderer-only dependencies to devDependencies since they are already bundled by Vite (197 → 37 runtime deps) - Pack app resources into asar archive with native addon unpacking - Strip unused Electron locale files, keeping only en-US - Remove non-essential Electron files (LICENSES.chromium.html, LICENSE) - Remove default_app.asar from Electron distribution - Strip .NET sidecar localization satellite assemblies (en only) Release artifact shrinks from 607 MB / 10,525 files to 478 MB / 235 files. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
19 lines
669 B
XML
19 lines
669 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="GitHub.Copilot.SDK" Version="0.2.0" />
|
|
<PackageReference Include="Microsoft.Agents.AI" Version="1.0.0-rc4" />
|
|
<PackageReference Include="Microsoft.Agents.AI.GitHub.Copilot" Version="1.0.0-preview.260311.1" />
|
|
<PackageReference Include="Microsoft.Agents.AI.Workflows" Version="1.0.0-rc4" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|