-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrawspaw.csproj
More file actions
27 lines (27 loc) · 1.08 KB
/
rawspaw.csproj
File metadata and controls
27 lines (27 loc) · 1.08 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>0.4.1</Version>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>false</SelfContained>
<Title>Raw-Spaw</Title>
<Authors>Bohdan Bobrowski</Authors>
<Description>Move RAW files for low or not ranked JPEG's to subfolder.</Description>
<PackageProjectUrl>https://github.com/bohdanbobrowski/raw-spaw</PackageProjectUrl>
<ApplicationIcon>Assets\RawSpaw.ico</ApplicationIcon>
<AssemblyName>RawSpaw</AssemblyName>
<RootNamespace>RawSpaw</RootNamespace>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OutputPath>bin\Debug</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<OutputPath>bin\Release</OutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="MetadataExtractor" Version="2.8.1" />
<PackageReference Include="TagLibSharp" Version="2.3.0" />
</ItemGroup>
</Project>