Skip to content

Commit

Permalink
Enable single-file publish
Browse files Browse the repository at this point in the history
  • Loading branch information
bc3tech committed Jul 14, 2024
1 parent 9768a0f commit 5ce5265
Showing 1 changed file with 25 additions and 21 deletions.
46 changes: 25 additions & 21 deletions FileSorter.csproj
Original file line number Diff line number Diff line change
@@ -1,26 +1,30 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<StartupObject>FileSorter.Program</StartupObject>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Version>0.0.1</Version>
<Authors>bc3tech</Authors>
<Company>BC3 Technologies</Company>
<Description>Sorts files into datetime subfolders, optionally parsing EXIF data of photos to get accurate date/time information.</Description>
<Copyright>(c) BC3 Technologies</Copyright>
<PackageProjectUrl>https://github.com/bc3tech/filesorter</PackageProjectUrl>
<RepositoryUrl>https://github.com/bc3tech/filesorter</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<PackageTags>filesorter</PackageTags>
<AssemblyVersion>0.0.1</AssemblyVersion>
<NeutralLanguage>en-US</NeutralLanguage>
</PropertyGroup>
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>

<ItemGroup>
<PackageReference Include="ExifLib.Standard" Version="1.7.0" />
<PackageReference Include="PowerArgs" Version="4.0.3" />
</ItemGroup>
<StartupObject>FileSorter.Program</StartupObject>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Version>0.0.1</Version>
<Authors>bc3tech</Authors>
<Company>BC3 Technologies</Company>
<Description>Sorts files into datetime subfolders, optionally parsing EXIF data of photos to get accurate date/time information.</Description>
<Copyright>(c) BC3 Technologies</Copyright>
<PackageProjectUrl>https://github.com/bc3tech/filesorter</PackageProjectUrl>
<RepositoryUrl>https://github.com/bc3tech/filesorter</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<PackageTags>filesorter</PackageTags>
<AssemblyVersion>0.0.1</AssemblyVersion>
<NeutralLanguage>en-US</NeutralLanguage>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="ExifLib.Standard" Version="1.7.0" />
<PackageReference Include="PowerArgs" Version="4.0.3" />
</ItemGroup>

</Project>

0 comments on commit 5ce5265

Please sign in to comment.