-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The changes to reorganize the code a275d0b and to remove obsolete code 8f412f5 breaks the build. Additionally the filtering done to this repo between a275d0b and 3c917a7 removes the ExtraAssemblies folder - which was a bad practice lump of binary files that should not have been committed. This commit is the first in a series that will repair the solution build, replace antiquated DLLs with newer packages (if possible) , and if needed will add binaries as git-lfs objects (so as not to blaot repo size). Specific changes: - Removed build configurations we never use - Renamed solution to AudioAnalysis.sln - Reintroduced the MQUTeR.FSharp.Shared.fsproj as Acoustics.Shared.FSharp.proj - Removed dynamic yaml DLL. Aim is to remove dependency completely but if not the DLL will be replaced in a later commit - Factored out unsafe code to a dedicated project (as is considered best practice) - Removed hard dependence on MathNet.Iridium and replaced various FFT function calls with updated calls from MathNet - Generally recreated all FSharp projects to remove legacy references to build tools that sometimes give us problems - Removed MEF plugin helper code since we don't use it (and it was a hardcoded library) - Updated various MathNet SVD calls to newer API - Updated FsCheck generators to new API
- Loading branch information
Showing
71 changed files
with
3,348 additions
and
2,611 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
namespace AED.New.AssemblyInfo | ||
|
||
open System.Reflection | ||
open System.Runtime.CompilerServices | ||
open System.Runtime.InteropServices | ||
|
||
// General Information about an assembly is controlled through the following | ||
// set of attributes. Change these attribute values to modify the information | ||
// associated with an assembly. | ||
[<assembly: AssemblyTitle("AED.New")>] | ||
[<assembly: AssemblyDescription("")>] | ||
[<assembly: AssemblyConfiguration("")>] | ||
[<assembly: AssemblyCompany("")>] | ||
[<assembly: AssemblyProduct("AED.New")>] | ||
[<assembly: AssemblyCopyright("Copyright © 2018")>] | ||
[<assembly: AssemblyTrademark("")>] | ||
[<assembly: AssemblyCulture("")>] | ||
|
||
// Setting ComVisible to false makes the types in this assembly not visible | ||
// to COM components. If you need to access a type in this assembly from | ||
// COM, set the ComVisible attribute to true on that type. | ||
[<assembly: ComVisible(false)>] | ||
|
||
// The following GUID is for the ID of the typelib if this project is exposed to COM | ||
[<assembly: Guid("d5dfd3d5-ef64-4f5b-867f-192daa7594fc")>] | ||
|
||
// Version information for an assembly consists of the following four values: | ||
// | ||
// Major Version | ||
// Minor Version | ||
// Build Number | ||
// Revision | ||
// | ||
// You can specify all the values or you can default the Build and Revision Numbers | ||
// by using the '*' as shown below: | ||
// [<assembly: AssemblyVersion("1.0.*")>] | ||
[<assembly: AssemblyVersion("1.0.0.0")>] | ||
[<assembly: AssemblyFileVersion("1.0.0.0")>] | ||
|
||
do | ||
() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="FSharp.Compiler.Tools" version="4.1.17" targetFramework="net40" /> | ||
<package id="FSharp.Core" version="4.2.3" targetFramework="net452" /> | ||
<package id="FSPowerPack.Community" version="3.0.0.0" targetFramework="net40" /> | ||
<package id="FSPowerPack.Core.Community" version="3.0.0.0" targetFramework="net40" /> | ||
<package id="FSPowerPack.Linq.Community" version="3.0.0.0" targetFramework="net40" /> | ||
<package id="FSPowerPack.Metadata.Community" version="3.0.0.0" targetFramework="net40" /> | ||
<package id="FSPowerPack.Parallel.Seq.Community" version="3.0.0.0" targetFramework="net40" /> | ||
<package id="Microsoft.Bcl" version="1.1.10" targetFramework="net40" requireReinstallation="true" /> | ||
<package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net40" /> | ||
<package id="Microsoft.Bcl.Build" version="1.0.21" targetFramework="net40" /> | ||
<package id="Newtonsoft.Json" version="10.0.3" targetFramework="net40" requireReinstallation="true" /> | ||
<package id="StyleCop.Analyzers" version="1.1.0-beta004" targetFramework="net40" developmentDependency="true" /> | ||
<package id="FSharp.Compiler.Tools" version="4.1.29" targetFramework="net462" /> | ||
<package id="FSharp.Core" version="4.2.3" targetFramework="net461" /> | ||
<package id="FSPowerPack.Community" version="3.0.0.0" targetFramework="net461" /> | ||
<package id="FSPowerPack.Core.Community" version="3.0.0.0" targetFramework="net461" /> | ||
<package id="FSPowerPack.Linq.Community" version="3.0.0.0" targetFramework="net461" /> | ||
<package id="FSPowerPack.Metadata.Community" version="3.0.0.0" targetFramework="net461" /> | ||
<package id="FSPowerPack.Parallel.Seq.Community" version="3.0.0.0" targetFramework="net461" /> | ||
<package id="Microsoft.Bcl" version="1.1.10" targetFramework="net461" /> | ||
<package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net461" /> | ||
<package id="Microsoft.Bcl.Build" version="1.0.21" targetFramework="net461" /> | ||
<package id="Newtonsoft.Json" version="10.0.3" targetFramework="net461" /> | ||
<package id="StyleCop.Analyzers" version="1.1.0-beta004" targetFramework="net461" developmentDependency="true" /> | ||
</packages> |
Oops, something went wrong.