diff options
Diffstat (limited to 'DistributedPasswordCracker.Server/DistributedPasswordCracker.Server.csproj')
-rw-r--r-- | DistributedPasswordCracker.Server/DistributedPasswordCracker.Server.csproj | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/DistributedPasswordCracker.Server/DistributedPasswordCracker.Server.csproj b/DistributedPasswordCracker.Server/DistributedPasswordCracker.Server.csproj new file mode 100644 index 0000000..2184657 --- /dev/null +++ b/DistributedPasswordCracker.Server/DistributedPasswordCracker.Server.csproj @@ -0,0 +1,17 @@ +<Project Sdk="Microsoft.NET.Sdk">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>netcoreapp2.0</TargetFramework>
+ </PropertyGroup>
+<ItemGroup>
+ <None Update="passwords.txt">
+ <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+ </None>
+ </ItemGroup>
+ <ItemGroup>
+ <None Update="dictionary.txt">
+ <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+ </None>
+ </ItemGroup>
+</Project>
|