Skip to content

Commit c8cee31

Browse files
author
Alexander Fuks
committed
Added an icon and assembly info
1 parent 9c9d18b commit c8cee31

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# EFS (Eat Free Space)
22

3-
EFS is utility that provide ability to fill up all available free space on the drive.
3+
EFS is utility to fill up all available free space on the drive.
44
This utility is created to be used for testing purposes (e.g. resilience testing).
55

66
## How it works?
77
EFS creates the empty file with defined file length. So, this file will be just a file declaration for file system. Such file can be created very quickly and there is no need to write some data to the file, so hard disk health is not suffering.
88

99
### Requirements:
1010

11-
.NET 4.0 is required to build the project.
11+
.NET 4.5 is required to build the project.

project/1445454237_agt_games.ico

135 KB
Binary file not shown.

project/Properties/AssemblyInfo.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
// General Information about an assembly is controlled through the following
66
// set of attributes. Change these attribute values to modify the information
77
// associated with an assembly.
8-
[assembly: AssemblyTitle("efs")]
9-
[assembly: AssemblyDescription("")]
8+
[assembly: AssemblyTitle("Eat Free Space")]
9+
[assembly: AssemblyDescription("Utility to fill up all available free space on the drive")]
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("")]
12-
[assembly: AssemblyProduct("efs")]
13-
[assembly: AssemblyCopyright("Copyright © 2015")]
12+
[assembly: AssemblyProduct("EFS")]
13+
[assembly: AssemblyCopyright("Copyright © Alexander Fuks 2015")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]
1616

project/efs.csproj

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@
3131
<ErrorReport>prompt</ErrorReport>
3232
<WarningLevel>4</WarningLevel>
3333
</PropertyGroup>
34+
<PropertyGroup>
35+
<ApplicationIcon>1445454237_agt_games.ico</ApplicationIcon>
36+
</PropertyGroup>
3437
<ItemGroup>
3538
<Reference Include="System" />
3639
<Reference Include="System.Core" />
@@ -51,6 +54,9 @@
5154
<ItemGroup>
5255
<None Include="App.config" />
5356
</ItemGroup>
57+
<ItemGroup>
58+
<Content Include="1445454237_agt_games.ico" />
59+
</ItemGroup>
5460
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
5561
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
5662
Other similar extension points exist, see Microsoft.Common.targets.

0 commit comments

Comments
 (0)