Skip to content
This repository was archived by the owner on Feb 19, 2025. It is now read-only.

Commit 2c6083a

Browse files
committed
Upgrade to .NET 7
1 parent 74262e5 commit 2c6083a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Unique File Generator
22
This command line tool allows you to quickly and easily create an arbitrary number of unique (by name and content) files on your computer. Each filename contains a random collection of characters to differentiate them. You can also supply optional parameters to customize files according to your needs. Before running, the tool will check that there is sufficient drive space available for the operation.
33

4-
This tool targets .NET 6 and, for now, needs to be compiled manually.
4+
This tool targets .NET 7 and, for now, needs to be compiled manually.
55

66
## Usage
77
At the minimum, you must specify the number of files you want to generate. This should be a single positive integer (with optional commas).

UniqueFileGenerator/UniqueFileGenerator.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net7.0</TargetFramework>
55
<ImplicitUsings>disable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<PublishSingleFile>true</PublishSingleFile>
@@ -21,4 +21,4 @@
2121
<DependentUpon>Resources.resx</DependentUpon>
2222
</Compile>
2323
</ItemGroup>
24-
</Project>
24+
</Project>

0 commit comments

Comments
 (0)