Skip to content

Commit

Permalink
Refine folder structure for EncodingAndPackagingExample
Browse files Browse the repository at this point in the history
  • Loading branch information
xieyubo committed Nov 6, 2023
1 parent c11d9ed commit 96cce41
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 6 deletions.
8 changes: 7 additions & 1 deletion EncodingAndPackagingExample/EncodingAndPackagingExample.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EncodingAndPackagingTool", "EncodingAndPackagingTool\EncodingAndPackagingTool.csproj", "{E2719164-6D20-45ED-892D-ACAFD492683F}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EncodingAndPackagingTool.Core", "EncodingAndPackagingTool.Core\EncodingAndPackagingTool.Core.csproj", "{E2719164-6D20-45ED-892D-ACAFD492683F}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EncodingAndPackagingTool.Cli", "EncodingAndPackagingTool.Cli\EncodingAndPackagingTool.Cli.csproj", "{BBC73920-57DA-47C1-93FD-C70B7A8CE1F0}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -15,6 +17,10 @@ Global
{E2719164-6D20-45ED-892D-ACAFD492683F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E2719164-6D20-45ED-892D-ACAFD492683F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E2719164-6D20-45ED-892D-ACAFD492683F}.Release|Any CPU.Build.0 = Release|Any CPU
{BBC73920-57DA-47C1-93FD-C70B7A8CE1F0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BBC73920-57DA-47C1-93FD-C70B7A8CE1F0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BBC73920-57DA-47C1-93FD-C70B7A8CE1F0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BBC73920-57DA-47C1-93FD-C70B7A8CE1F0}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,11 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.10.3" />
<PackageReference Include="Azure.Storage.Blobs" Version="12.18.0" />
<PackageReference Include="FFMpegCore" Version="5.1.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="7.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="7.0.0" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
<PackageReference Include="System.CommandLine.DragonFruit" Version="0.4.0-alpha.22272.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\EncodingAndPackagingTool.Core\EncodingAndPackagingTool.Core.csproj" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>EncodingAndPackagingTool.Core</AssemblyName>
<RootNamespace>EncodingAndPackagingTool</RootNamespace>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Storage.Blobs" Version="12.18.0" />
<PackageReference Include="FFMpegCore" Version="5.1.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="7.0.1" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

namespace EncodingAndPackagingTool;

internal class EncodingAndPackagingTool
public class EncodingAndPackagingTool
{
private readonly ILogger _logger;
private readonly TokenCredential _azureCredential;
Expand Down

0 comments on commit 96cce41

Please sign in to comment.