-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImageCombinerChannelExtractor.csproj
More file actions
57 lines (48 loc) · 1.98 KB
/
Copy pathImageCombinerChannelExtractor.csproj
File metadata and controls
57 lines (48 loc) · 1.98 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>
<StartupObject>ImageCombinerChannelExtractor.App</StartupObject>
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
<Version>1.0.0</Version>
<Company>Vibrant Pixels</Company>
<Authors>Vibrant Pixels</Authors>
<Copyright>Vibrant Pixels</Copyright>
<RepositoryUrl>https://github.com/VibrantPixls/ImageCombinerChannelExtractor</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Description>A Windows WPF tool for combining images into RGBA textures and extracting color channels from PNG/JPG files. Ideal for game developers and texture artists.</Description>
<ApplicationIcon>Components\Icons\app_icon_v3.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>none</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
</PropertyGroup>
<ItemGroup>
<None Remove="Components\Icons\app_icon_v3.png" />
<None Remove="Components\Icons\app_icon_v3_images.png" />
<None Remove="Components\Icons\app_icon_v3_prism.png" />
<None Remove="Components\Icons\app_icon_v3_prism_dark.png" />
</ItemGroup>
<ItemGroup>
<Content Include="Components\Icons\app_icon_v3.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="WPF-UI" Version="4.3.0" />
</ItemGroup>
<ItemGroup>
<Resource Include="Components\Icons\app_icon_v3_images.png" />
<Resource Include="Components\Icons\app_icon_v3_prism.png" />
<Resource Include="Components\Icons\app_icon_v3_prism_dark.png" />
</ItemGroup>
<ItemGroup>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>