-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathJustCode.csproj
More file actions
57 lines (50 loc) · 2.07 KB
/
Copy pathJustCode.csproj
File metadata and controls
57 lines (50 loc) · 2.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<ApplicationIcon>app.ico</ApplicationIcon>
<AssemblyName>JustCode</AssemblyName>
<RootNamespace>JustCode</RootNamespace>
<Product>JustCode</Product>
<AssemblyTitle>JustCode</AssemblyTitle>
<Company>JustGains</Company>
<Authors>JustGains</Authors>
<Copyright>© JustGains</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Description>JustCode — a GUI driver for Claude Code and Codex loops.</Description>
<Version>0.1.0</Version>
<AssemblyVersion>0.1.0.0</AssemblyVersion>
<FileVersion>0.1.0.0</FileVersion>
<InformationalVersion>0.1.0</InformationalVersion>
</PropertyGroup>
<ItemGroup>
<AssemblyMetadata Include="AppId" Value="com.justgains.looper" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AvalonEdit" Version="6.3.1.120" />
<PackageReference Include="Markdig.Wpf" Version="0.5.0.1" />
<PackageReference Include="SharpVectors.Reloaded" Version="1.8.5" />
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.2792.45" />
</ItemGroup>
<ItemGroup>
<Resource Include="app.ico" />
</ItemGroup>
<!-- Material icon theme assets (ported from material-extensions/vscode-material-icon-theme).
Shipped as Content so the published app can read them at runtime. -->
<ItemGroup>
<Content Include="Assets\icon-map.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Assets\icons\**\*.svg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<!-- Embedded xterm.js terminal host, served via a virtual host mapping
so WebView2 can load it at http://terminal.local/. -->
<Content Include="Assets\terminal\**\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>