Skip to content

Commit

Permalink
Dependancies and Framwork Targets
Browse files Browse the repository at this point in the history
- Updated dependancies
- Changed target framworks to .NET Framework 4.5, 4.6, and .NET Standard 2.0
  • Loading branch information
mullak99 committed Aug 30, 2020
1 parent 0cb16a7 commit 3748c28
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 12 deletions.
2 changes: 1 addition & 1 deletion FAES/FAES.cs
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,7 @@ public class FileAES_Utilities
public static string ExtentionUFAES = ".ufaes";

private const bool IsPreReleaseBuild = true;
private const string PreReleaseTag = "DEV_191128-1";
private const string PreReleaseTag = "BETA_5";

private static string[] _supportedEncExtentions = new string[3] { ExtentionFAES, ".faes", ".mcrypt" };
private static string _FileAES_TempRoot = Path.Combine(Path.GetTempPath(), "FileAES");
Expand Down
29 changes: 18 additions & 11 deletions FAES/FAES.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net45;netstandard2.0;netstandard2.1</TargetFrameworks>
<Version>1.2.0</Version>
<TargetFrameworks>net45;net46;netstandard2.0</TargetFrameworks>
<Version>1.2.0-beta5</Version>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<PackageReleaseNotes>- Replaced the FAESv2-CBC file structure with FAESv3. The MetaData is now dynamically sized, and not limited to 256 bytes
- Added better compression handling (easier to add new compression algorithms)
Expand All @@ -18,29 +18,36 @@
- Changed default file hashing algorithm to SHA256
- Changed Compressed, Unencrypted file extention from '.faeszip' to '.ufaes'
- Changed UNIX timestamp from Int32 to Int64
- Changed target frameworks to .NET Framework 4.5, .NET Standard (2.0 and 2.1)</PackageReleaseNotes>
- Changed target frameworks to .NET Framework 4.5, .NET Framework 4.6, and .NET Standard 2.0</PackageReleaseNotes>
<Authors>mullak99</Authors>
<Description>C# Library to encrypt/decrypt files using AES. With extra features.</Description>
<FileVersion>1.2.0.0</FileVersion>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
<RepositoryUrl>https://github.com/fileaes/FAES</RepositoryUrl>
<Copyright>Copyright © 2019 | mullak99</Copyright>
<Copyright>Copyright © 2020 | mullak99</Copyright>
<PackageTags>faes, faes-library, aes, aes-encryption, aes-decryption, encryption, decryption</PackageTags>
<PackageProjectUrl>https://github.com/fileaes/FAES</PackageProjectUrl>
<Product>FAES</Product>
<PackageId>FAES</PackageId>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<Company>mullak99</Company>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Costura.Fody" Version="4.1.0" />
<PackageReference Include="Fody" Version="6.0.5">
<PackageReference Include="Fody" Version="6.2.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="SharpCompress" Version="0.24.0" />
<PackageReference Include="SharpCompress" Version="0.24.0" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
<Reference Include="System.IO.Compression">
<SpecificVersion></SpecificVersion>
<Private></Private>
</Reference>
<Reference Include="System.IO.Compression" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net46' ">
<Reference Include="System.IO.Compression" />
</ItemGroup>

</Project>

0 comments on commit 3748c28

Please sign in to comment.