Skip to content
This repository was archived by the owner on Dec 16, 2022. It is now read-only.

Commit ce7ec49

Browse files
committed
update
1 parent c932e52 commit ce7ec49

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+58377
-952
lines changed

.gitignore

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
2-
/SOURCE/_ReSharper.DummyFileCreator
3-
/SOURCE/DummyFileCreator.6.0.ReSharper.user
4-
/SOURCE/DummyFileCreator/obj
5-
/SOURCE/DummyFileCreator/bin
1+
*.suo
2+
bin
3+
obj

SOURCE/DummyFileCreator/DummyFileCreator.csproj renamed to DummyFileCreator.csproj

Lines changed: 18 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
55
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
@@ -9,8 +9,8 @@
99
<OutputType>WinExe</OutputType>
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
1111
<RootNamespace>DummyFileCreator</RootNamespace>
12-
<AssemblyName>DummyFileCreator</AssemblyName>
13-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
12+
<AssemblyName>Dummy-File-Creator</AssemblyName>
13+
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
1515
<TargetFrameworkProfile />
1616
</PropertyGroup>
@@ -23,6 +23,7 @@
2323
<DefineConstants>DEBUG;TRACE</DefineConstants>
2424
<ErrorReport>prompt</ErrorReport>
2525
<WarningLevel>4</WarningLevel>
26+
<Prefer32Bit>false</Prefer32Bit>
2627
</PropertyGroup>
2728
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
2829
<PlatformTarget>x86</PlatformTarget>
@@ -32,8 +33,21 @@
3233
<DefineConstants>TRACE</DefineConstants>
3334
<ErrorReport>prompt</ErrorReport>
3435
<WarningLevel>4</WarningLevel>
36+
<Prefer32Bit>false</Prefer32Bit>
3537
</PropertyGroup>
3638
<ItemGroup>
39+
<Reference Include="ANDREICSLIB, Version=1.0.104.0, Culture=neutral, processorArchitecture=MSIL">
40+
<HintPath>packages\ANDREICSLIB.1.0.104.0\lib\net451\ANDREICSLIB.dll</HintPath>
41+
<Private>True</Private>
42+
</Reference>
43+
<Reference Include="ICSharpCode.SharpZipLib, Version=0.86.0.518, Culture=neutral, PublicKeyToken=1b03e6acf1164f73, processorArchitecture=MSIL">
44+
<HintPath>packages\SharpZipLib.0.86.0\lib\20\ICSharpCode.SharpZipLib.dll</HintPath>
45+
<Private>True</Private>
46+
</Reference>
47+
<Reference Include="Newtonsoft.Json, Version=8.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
48+
<HintPath>packages\Newtonsoft.Json.8.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
49+
<Private>True</Private>
50+
</Reference>
3751
<Reference Include="System" />
3852
<Reference Include="System.Core" />
3953
<Reference Include="System.Runtime.Serialization" />
@@ -55,11 +69,6 @@
5569
</Compile>
5670
<Compile Include="Program.cs" />
5771
<Compile Include="Properties\AssemblyInfo.cs" />
58-
<Compile Include="Service References\ServiceReference1\Reference.cs">
59-
<AutoGen>True</AutoGen>
60-
<DesignTime>True</DesignTime>
61-
<DependentUpon>Reference.svcmap</DependentUpon>
62-
</Compile>
6372
<EmbeddedResource Include="Form1.resx">
6473
<DependentUpon>Form1.cs</DependentUpon>
6574
</EmbeddedResource>
@@ -74,6 +83,7 @@
7483
<DesignTime>True</DesignTime>
7584
</Compile>
7685
<None Include="app.config" />
86+
<None Include="packages.config" />
7787
<None Include="Properties\Settings.settings">
7888
<Generator>SettingsSingleFileGenerator</Generator>
7989
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
@@ -83,46 +93,6 @@
8393
<DependentUpon>Settings.settings</DependentUpon>
8494
<DesignTimeSharedInput>True</DesignTimeSharedInput>
8595
</Compile>
86-
<None Include="Service References\ServiceReference1\DummyFileCreator.ServiceReference1.TitleInfoServiceModel.datasource">
87-
<DependentUpon>Reference.svcmap</DependentUpon>
88-
</None>
89-
<None Include="Service References\ServiceReference1\Services.wsdl" />
90-
<None Include="Service References\ServiceReference1\Services.xsd">
91-
<SubType>Designer</SubType>
92-
</None>
93-
<None Include="Service References\ServiceReference1\Services1.xsd">
94-
<SubType>Designer</SubType>
95-
</None>
96-
<None Include="Service References\ServiceReference1\Services2.xsd">
97-
<SubType>Designer</SubType>
98-
</None>
99-
</ItemGroup>
100-
<ItemGroup>
101-
<ProjectReference Include="..\..\..\ANDREICSLIB\SOURCE\ANDREICSLIB\ANDREICSLIB.csproj">
102-
<Project>{469B8120-B6D8-48BD-97C4-AFAB63AEE304}</Project>
103-
<Name>ANDREICSLIB</Name>
104-
</ProjectReference>
105-
</ItemGroup>
106-
<ItemGroup>
107-
<WCFMetadata Include="Service References\" />
108-
</ItemGroup>
109-
<ItemGroup>
110-
<WCFMetadataStorage Include="Service References\ServiceReference1\" />
111-
</ItemGroup>
112-
<ItemGroup>
113-
<None Include="Service References\ServiceReference1\Services.disco" />
114-
</ItemGroup>
115-
<ItemGroup>
116-
<None Include="Service References\ServiceReference1\configuration91.svcinfo" />
117-
</ItemGroup>
118-
<ItemGroup>
119-
<None Include="Service References\ServiceReference1\configuration.svcinfo" />
120-
</ItemGroup>
121-
<ItemGroup>
122-
<None Include="Service References\ServiceReference1\Reference.svcmap">
123-
<Generator>WCF Proxy Generator</Generator>
124-
<LastGenOutput>Reference.cs</LastGenOutput>
125-
</None>
12696
</ItemGroup>
12797
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
12898
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.

SOURCE/DummyFileCreator.sln renamed to DummyFileCreator.sln

Lines changed: 5 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

2-
Microsoft Visual Studio Solution File, Format Version 11.00
3-
# Visual Studio 2010
4-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DummyFileCreator", "DummyFileCreator\DummyFileCreator.csproj", "{90FEE106-FA45-4E57-B095-85117B3E2DE4}"
5-
EndProject
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ANDREICSLIB", "..\..\ANDREICSLIB\SOURCE\ANDREICSLIB\ANDREICSLIB.csproj", "{469B8120-B6D8-48BD-97C4-AFAB63AEE304}"
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 14
4+
VisualStudioVersion = 14.0.24720.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DummyFileCreator", "DummyFileCreator.csproj", "{90FEE106-FA45-4E57-B095-85117B3E2DE4}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -33,21 +33,6 @@ Global
3333
{90FEE106-FA45-4E57-B095-85117B3E2DE4}.Release|Mixed Platforms.Build.0 = Release|x86
3434
{90FEE106-FA45-4E57-B095-85117B3E2DE4}.Release|x86.ActiveCfg = Release|x86
3535
{90FEE106-FA45-4E57-B095-85117B3E2DE4}.Release|x86.Build.0 = Release|x86
36-
{469B8120-B6D8-48BD-97C4-AFAB63AEE304}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
37-
{469B8120-B6D8-48BD-97C4-AFAB63AEE304}.Debug|Any CPU.Build.0 = Debug|Any CPU
38-
{469B8120-B6D8-48BD-97C4-AFAB63AEE304}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
39-
{469B8120-B6D8-48BD-97C4-AFAB63AEE304}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
40-
{469B8120-B6D8-48BD-97C4-AFAB63AEE304}.Debug|x86.ActiveCfg = Debug|Any CPU
41-
{469B8120-B6D8-48BD-97C4-AFAB63AEE304}.Release With Debug|Any CPU.ActiveCfg = Release With Debug|Any CPU
42-
{469B8120-B6D8-48BD-97C4-AFAB63AEE304}.Release With Debug|Any CPU.Build.0 = Release With Debug|Any CPU
43-
{469B8120-B6D8-48BD-97C4-AFAB63AEE304}.Release With Debug|Mixed Platforms.ActiveCfg = Release With Debug|Any CPU
44-
{469B8120-B6D8-48BD-97C4-AFAB63AEE304}.Release With Debug|Mixed Platforms.Build.0 = Release With Debug|Any CPU
45-
{469B8120-B6D8-48BD-97C4-AFAB63AEE304}.Release With Debug|x86.ActiveCfg = Release With Debug|Any CPU
46-
{469B8120-B6D8-48BD-97C4-AFAB63AEE304}.Release|Any CPU.ActiveCfg = Release|Any CPU
47-
{469B8120-B6D8-48BD-97C4-AFAB63AEE304}.Release|Any CPU.Build.0 = Release|Any CPU
48-
{469B8120-B6D8-48BD-97C4-AFAB63AEE304}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
49-
{469B8120-B6D8-48BD-97C4-AFAB63AEE304}.Release|Mixed Platforms.Build.0 = Release|Any CPU
50-
{469B8120-B6D8-48BD-97C4-AFAB63AEE304}.Release|x86.ActiveCfg = Release|Any CPU
5136
EndGlobalSection
5237
GlobalSection(SolutionProperties) = preSolution
5338
HideSolutionNode = FALSE
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)