-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #155 from CafIncubator/develop
Major changes - Upgraded from .NET6 to .NET9 - Added Tag page - Added data lineage graphs - Some UI style changes - Can export variable table as CSV - Numerous bug fixes and small changes
- Loading branch information
Showing
28 changed files
with
977 additions
and
140 deletions.
There are no files selected for viewing
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
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,36 +1,31 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<TargetFramework>net9.0</TargetFramework> | ||
<PackAsTool>true</PackAsTool> | ||
<Nullable>enable</Nullable> | ||
<AssemblyVersion>0.3.1.0</AssemblyVersion> | ||
<FileVersion>0.3.1.0</FileVersion> | ||
<AssemblyVersion>0.4.0</AssemblyVersion> | ||
<FileVersion>0.4.0</FileVersion> | ||
<PackageId>MiddenCli</PackageId> | ||
<Version>0.3.1</Version> | ||
<Version>0.4-dev.0</Version> | ||
<RepositoryUrl>https://github.com/cafincubator/midden</RepositoryUrl> | ||
<AssemblyName>MiddenCli</AssemblyName> | ||
<PublishSingleFile>true</PublishSingleFile> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Azure.Identity" Version="1.5.0" /> | ||
<PackageReference Include="Azure.Storage.Files.DataLake" Version="12.8.0" /> | ||
<PackageReference Include="Azure.Storage.Files.Shares" Version="12.8.0" /> | ||
<PackageReference Include="Google.Apis.Drive.v3" Version="1.55.0.2566" /> | ||
<PackageReference Include="Azure.Identity" Version="1.13.1" /> | ||
<PackageReference Include="Azure.Storage.Files.DataLake" Version="12.21.0" /> | ||
<PackageReference Include="Azure.Storage.Files.Shares" Version="12.21.0" /> | ||
<PackageReference Include="Google.Apis.Drive.v3" Version="1.68.0.3608" /> | ||
<PackageReference Include="System.CommandLine" Version="2.0.0-beta1.20574.7" /> | ||
<PackageReference Include="System.Text.Json" Version="9.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Caf.Midden.Core\Caf.Midden.Core.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Update="configuration.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
</ItemGroup> | ||
|
||
|
||
</Project> | ||
</Project> |
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
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,11 +1,8 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<TargetFramework>net9.0</TargetFramework> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="CsvHelper" Version="27.2.1" /> | ||
<PackageReference Include="CsvHelper" Version="33.0.1" /> | ||
</ItemGroup> | ||
|
||
</Project> | ||
</Project> |
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
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
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
Oops, something went wrong.