Skip to content

Commit 0febe8e

Browse files
committed
Added existed project
1 parent 02b36aa commit 0febe8e

File tree

3 files changed

+433
-0
lines changed

3 files changed

+433
-0
lines changed

HuffmanEncoderDecoder.sln

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.31829.152
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HuffmanEncoderDecoder", "HuffmanEncoderDecoder\HuffmanEncoderDecoder.csproj", "{15C2092D-EFDC-4958-92BA-ACF8F24A4803}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{15C2092D-EFDC-4958-92BA-ACF8F24A4803}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{15C2092D-EFDC-4958-92BA-ACF8F24A4803}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{15C2092D-EFDC-4958-92BA-ACF8F24A4803}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{15C2092D-EFDC-4958-92BA-ACF8F24A4803}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {CB64A47F-29A4-4477-944C-8F7049AEB11B}
24+
EndGlobalSection
25+
EndGlobal
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>netcoreapp3.1</TargetFramework>
6+
</PropertyGroup>
7+
8+
<ItemGroup>
9+
<Compile Remove="ResultPoint\**" />
10+
<EmbeddedResource Remove="ResultPoint\**" />
11+
<None Remove="ResultPoint\**" />
12+
</ItemGroup>
13+
14+
</Project>

0 commit comments

Comments
 (0)