Skip to content

Commit 2f4fd1f

Browse files
committed
Add tar project
1 parent 333ed1d commit 2f4fd1f

File tree

2 files changed

+53
-5
lines changed

2 files changed

+53
-5
lines changed

SharpZipAll2008.sln

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "minibzip2", "samples\vb\min
1717
EndProject
1818
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "zipfiletest", "samples\vb\zipfiletest\zipfiletest.vbproj", "{54057AFD-35E2-48C3-8419-45D57C351C1F}"
1919
EndProject
20-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "tar", "samples\cs\tar\tar.csproj", "{88B53A25-82F4-406A-920D-163E717F6AB7}"
20+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tar", "samples\cs\tar\Tar.csproj", "{12C2AD0C-B815-426D-AFF1-7787C2DCA0F0}"
2121
EndProject
2222
Global
2323
GlobalSection(SubversionScc) = preSolution
@@ -61,10 +61,10 @@ Global
6161
{54057AFD-35E2-48C3-8419-45D57C351C1F}.Debug|Any CPU.Build.0 = Debug|Any CPU
6262
{54057AFD-35E2-48C3-8419-45D57C351C1F}.Release|Any CPU.ActiveCfg = Release|Any CPU
6363
{54057AFD-35E2-48C3-8419-45D57C351C1F}.Release|Any CPU.Build.0 = Release|Any CPU
64-
{88B53A25-82F4-406A-920D-163E717F6AB7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
65-
{88B53A25-82F4-406A-920D-163E717F6AB7}.Debug|Any CPU.Build.0 = Debug|Any CPU
66-
{88B53A25-82F4-406A-920D-163E717F6AB7}.Release|Any CPU.ActiveCfg = Release|Any CPU
67-
{88B53A25-82F4-406A-920D-163E717F6AB7}.Release|Any CPU.Build.0 = Release|Any CPU
64+
{12C2AD0C-B815-426D-AFF1-7787C2DCA0F0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
65+
{12C2AD0C-B815-426D-AFF1-7787C2DCA0F0}.Debug|Any CPU.Build.0 = Debug|Any CPU
66+
{12C2AD0C-B815-426D-AFF1-7787C2DCA0F0}.Release|Any CPU.ActiveCfg = Release|Any CPU
67+
{12C2AD0C-B815-426D-AFF1-7787C2DCA0F0}.Release|Any CPU.Build.0 = Release|Any CPU
6868
EndGlobalSection
6969
GlobalSection(SolutionProperties) = preSolution
7070
HideSolutionNode = FALSE

samples/cs/tar/Tar.csproj

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<PropertyGroup>
3+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
4+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
5+
<ProjectGuid>{12C2AD0C-B815-426D-AFF1-7787C2DCA0F0}</ProjectGuid>
6+
<ProductVersion>9.0.30729</ProductVersion>
7+
<SchemaVersion>2.0</SchemaVersion>
8+
<OutputType>Exe</OutputType>
9+
<NoStandardLibraries>false</NoStandardLibraries>
10+
<AssemblyName>ConsoleApplication</AssemblyName>
11+
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
12+
<FileAlignment>512</FileAlignment>
13+
<RootNamespace>Tar</RootNamespace>
14+
</PropertyGroup>
15+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16+
<DebugSymbols>true</DebugSymbols>
17+
<DebugType>full</DebugType>
18+
<Optimize>false</Optimize>
19+
<OutputPath>bin\Debug\</OutputPath>
20+
<DefineConstants>DEBUG;TRACE</DefineConstants>
21+
<ErrorReport>prompt</ErrorReport>
22+
<WarningLevel>4</WarningLevel>
23+
</PropertyGroup>
24+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
25+
<DebugType>pdbonly</DebugType>
26+
<Optimize>true</Optimize>
27+
<OutputPath>bin\Release\</OutputPath>
28+
<DefineConstants>TRACE</DefineConstants>
29+
<ErrorReport>prompt</ErrorReport>
30+
<WarningLevel>4</WarningLevel>
31+
</PropertyGroup>
32+
<ItemGroup>
33+
<Reference Include="System" />
34+
<Reference Include="System.Core" />
35+
<Reference Include="System.Data" />
36+
<Reference Include="System.Data.DataSetExtensions" />
37+
<Reference Include="System.Xml" />
38+
<Reference Include="System.Xml.Linq" />
39+
</ItemGroup>
40+
<ItemGroup>
41+
<Compile Include="AssemblyInfo.cs" />
42+
<Compile Include="Main.cs" />
43+
</ItemGroup>
44+
<Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" />
45+
<ProjectExtensions>
46+
<VisualStudio AllowExistingFolder="true" />
47+
</ProjectExtensions>
48+
</Project>

0 commit comments

Comments
 (0)