-
-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpupdate.csproj
More file actions
68 lines (68 loc) · 2.57 KB
/
Copy pathpupdate.csproj
File metadata and controls
68 lines (68 loc) · 2.57 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
58
59
60
61
62
63
64
65
66
67
68
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<PublishSingleFile>true</PublishSingleFile>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<Version>5.3.1</Version>
<Description>Keep your Analogue Pocket up to date</Description>
<Copyright>2026 Matt Pannella</Copyright>
<Authors>Matt Pannella</Authors>
<Product>Pupdate</Product>
<RepositoryUrl>https://github.com/mattpannella/pupdate</RepositoryUrl>
<RootNamespace>Pannella</RootNamespace>
<NoWarn>NU1605</NoWarn>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="ConsoleMenu-simple" Version="2.7.0" />
<PackageReference Include="Crc32.NET" Version="1.2.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
<PackageReference Include="Aspose.Zip" Version="26.3.0" />
<PackageReference Include="Extism.Sdk" Version="1.10.*" />
<PackageReference Include="Extism.runtime.all" Version="1.13.*" />
<PackageReference Include="Terminal.Gui" Version="2.4.12" />
</ItemGroup>
<ItemGroup>
<Compile Remove="tests/**" />
</ItemGroup>
<ItemGroup>
<EditorConfigFiles Remove=".editorconfig" />
</ItemGroup>
<ItemGroup>
<None Include=".editorconfig" />
<None Update="blacklist.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="image_packs.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="pocket_extras.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="pocket_library_images.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="display_modes.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="ignore_instance.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="jtbeta.zip">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<RuntimeHostConfigurationOption Include="System.Globalization.Invariant" Value="true" />
</ItemGroup>
<ItemGroup>
<Folder Include="pocket\Assets\" />
<Folder Include="pocket\Cores\" />
<Folder Include="pocket\Platforms\" />
<Folder Include="pocket\Platforms\_images\" />
<Folder Include="pocket\Presets\" />
</ItemGroup>
</Project>