Skip to content

Commit f55639c

Browse files
Merge branch 'ANNOTATION-2053'
2 parents 8f3da54 + 608457b commit f55639c

File tree

337 files changed

+590558
-715
lines changed

Some content is hidden

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

337 files changed

+590558
-715
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
using System.Web.Mvc;
2+
3+
namespace GroupDocs.Annotation.AspNetMvc.App_Start
4+
{
5+
public class FilterConfig
6+
{
7+
public static void RegisterGlobalFilters(GlobalFilterCollection filters)
8+
{
9+
filters.Add(new HandleErrorAttribute());
10+
}
11+
}
12+
}
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Web;
5+
using System.Web.Mvc;
6+
using System.Web.Routing;
7+
8+
namespace GroupDocs.Annotation.AspNetMvc
9+
{
10+
public class RouteConfig
11+
{
12+
public static void RegisterRoutes(RouteCollection routes)
13+
{
14+
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
15+
16+
routes.MapRoute(
17+
name: "Default",
18+
url: "{controller}/{action}/{id}",
19+
defaults: new { controller = "Annotation", action = "index", id = UrlParameter.Optional }
20+
);
21+
}
22+
}
23+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
using System.Web.Http;
2+
3+
namespace GroupDocs.Annotation.AspNetMvc.App_Start
4+
{
5+
public static class WebApiConfig
6+
{
7+
public static void Register(HttpConfiguration config)
8+
{
9+
// enable CORS
10+
config.EnableCors();
11+
12+
// Web API routes
13+
config.MapHttpAttributeRoutes();
14+
}
15+
}
16+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
using System.Web.Mvc;
2+
3+
namespace GroupDocs.Annotation.AspNetMvc.Controllers
4+
{
5+
public class AnnotationController : Controller
6+
{
7+
// View Annotation
8+
public ActionResult Index()
9+
{
10+
return View();
11+
}
12+
}
13+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<%@ Application Codebehind="Global.asax.cs" Inherits="GroupDocs.Annotation.AspNetMvc.WebApiApplication" Language="C#" %>
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
using System.Web;
2+
using System.Web.Http;
3+
using System.Web.Mvc;
4+
using System.Web.Routing;
5+
using GroupDocs.Annotation.AspNetMvc.App_Start;
6+
using GroupDocs.Annotation.AspNetMvc.Products.Annotation.Annotator;
7+
8+
namespace GroupDocs.Annotation.AspNetMvc
9+
{
10+
public class WebApiApplication : HttpApplication
11+
{
12+
protected void Application_Start()
13+
{
14+
string licensePath = "";
15+
SetLicense license = new SetLicense();
16+
license.Set_License(licensePath);
17+
18+
AreaRegistration.RegisterAllAreas();
19+
GlobalConfiguration.Configure(WebApiConfig.Register);
20+
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
21+
RouteConfig.RegisterRoutes(RouteTable.Routes);
22+
}
23+
}
24+
}
Lines changed: 245 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,245 @@
1+
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Import Project="packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1\build\net46\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props" Condition="Exists('packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1\build\net46\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props')" />
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProductVersion>
8+
</ProductVersion>
9+
<SchemaVersion>2.0</SchemaVersion>
10+
<ProjectGuid>{2BD1D7B5-8EE3-4A8C-9B79-278258349297}</ProjectGuid>
11+
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
12+
<OutputType>Library</OutputType>
13+
<AppDesignerFolder>Properties</AppDesignerFolder>
14+
<RootNamespace>GroupDocs.Annotation.AspNetMvc</RootNamespace>
15+
<AssemblyName>GroupDocs.Annotation.AspNetMvc</AssemblyName>
16+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
17+
<UseIISExpress>true</UseIISExpress>
18+
<Use64BitIISExpress />
19+
<IISExpressSSLPort>44319</IISExpressSSLPort>
20+
<IISExpressAnonymousAuthentication />
21+
<IISExpressWindowsAuthentication />
22+
<IISExpressUseClassicPipelineMode />
23+
<UseGlobalApplicationHostFile />
24+
<NuGetPackageImportStamp>
25+
</NuGetPackageImportStamp>
26+
</PropertyGroup>
27+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
28+
<DebugSymbols>true</DebugSymbols>
29+
<DebugType>full</DebugType>
30+
<Optimize>false</Optimize>
31+
<OutputPath>bin\</OutputPath>
32+
<DefineConstants>DEBUG;TRACE</DefineConstants>
33+
<ErrorReport>prompt</ErrorReport>
34+
<WarningLevel>4</WarningLevel>
35+
</PropertyGroup>
36+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
37+
<DebugSymbols>true</DebugSymbols>
38+
<DebugType>pdbonly</DebugType>
39+
<Optimize>true</Optimize>
40+
<OutputPath>bin\</OutputPath>
41+
<DefineConstants>TRACE</DefineConstants>
42+
<ErrorReport>prompt</ErrorReport>
43+
<WarningLevel>4</WarningLevel>
44+
</PropertyGroup>
45+
<ItemGroup>
46+
<Reference Include="Antlr3.Runtime, Version=3.4.1.9004, Culture=neutral, PublicKeyToken=eb42632606e9261f, processorArchitecture=MSIL">
47+
<HintPath>packages\Antlr.3.4.1.9004\lib\Antlr3.Runtime.dll</HintPath>
48+
</Reference>
49+
<Reference Include="GroupDocs.Annotation, Version=22.5.1.0, Culture=neutral, PublicKeyToken=716fcc553a201e56, processorArchitecture=MSIL">
50+
<HintPath>packages\GroupDocs.Annotation.22.5.1\lib\net40\GroupDocs.Annotation.dll</HintPath>
51+
</Reference>
52+
<Reference Include="Microsoft.CSharp" />
53+
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
54+
<HintPath>packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
55+
</Reference>
56+
<Reference Include="System.IO.Compression, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
57+
<HintPath>packages\System.IO.Compression.4.3.0\lib\net46\System.IO.Compression.dll</HintPath>
58+
<Private>True</Private>
59+
<Private>True</Private>
60+
</Reference>
61+
<Reference Include="System.Net.Http" />
62+
<Reference Include="System.Net.Http.Formatting, Version=5.2.9.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
63+
<HintPath>packages\Microsoft.AspNet.WebApi.Client.5.2.9\lib\net45\System.Net.Http.Formatting.dll</HintPath>
64+
</Reference>
65+
<Reference Include="System.Runtime.Serialization" />
66+
<Reference Include="System.Web.Cors, Version=5.2.9.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
67+
<HintPath>packages\Microsoft.AspNet.Cors.5.2.9\lib\net45\System.Web.Cors.dll</HintPath>
68+
</Reference>
69+
<Reference Include="System.Web.DynamicData" />
70+
<Reference Include="System.Web.Entity" />
71+
<Reference Include="System.Web.ApplicationServices" />
72+
<Reference Include="System.ComponentModel.DataAnnotations" />
73+
<Reference Include="System" />
74+
<Reference Include="System.Data" />
75+
<Reference Include="System.Core" />
76+
<Reference Include="System.Data.DataSetExtensions" />
77+
<Reference Include="System.Web.Extensions" />
78+
<Reference Include="System.Web.Http, Version=5.2.9.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
79+
<HintPath>packages\Microsoft.AspNet.WebApi.Core.5.2.9\lib\net45\System.Web.Http.dll</HintPath>
80+
</Reference>
81+
<Reference Include="System.Web.Http.Cors, Version=5.2.9.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
82+
<HintPath>packages\Microsoft.AspNet.WebApi.Cors.5.2.9\lib\net45\System.Web.Http.Cors.dll</HintPath>
83+
</Reference>
84+
<Reference Include="System.Web.Http.WebHost, Version=5.2.9.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
85+
<HintPath>packages\Microsoft.AspNet.WebApi.WebHost.5.2.9\lib\net45\System.Web.Http.WebHost.dll</HintPath>
86+
</Reference>
87+
<Reference Include="System.Xml.Linq" />
88+
<Reference Include="System.Drawing" />
89+
<Reference Include="System.Web" />
90+
<Reference Include="System.Xml" />
91+
<Reference Include="System.Configuration" />
92+
<Reference Include="System.Web.Services" />
93+
<Reference Include="System.EnterpriseServices" />
94+
<Reference Include="YamlDotNet, Version=12.0.0.0, Culture=neutral, PublicKeyToken=ec19458f3c15af5e, processorArchitecture=MSIL">
95+
<HintPath>packages\YamlDotNet.12.0.0\lib\net47\YamlDotNet.dll</HintPath>
96+
</Reference>
97+
</ItemGroup>
98+
<ItemGroup>
99+
<Reference Include="System.Web.Razor">
100+
<HintPath>packages\Microsoft.AspNet.Razor.3.2.7\lib\net45\System.Web.Razor.dll</HintPath>
101+
</Reference>
102+
<Reference Include="System.Web.Webpages">
103+
<HintPath>packages\Microsoft.AspNet.Webpages.3.2.7\lib\net45\System.Web.Webpages.dll</HintPath>
104+
</Reference>
105+
<Reference Include="System.Web.Webpages.Deployment">
106+
<HintPath>packages\Microsoft.AspNet.Webpages.3.2.7\lib\net45\System.Web.Webpages.Deployment.dll</HintPath>
107+
</Reference>
108+
<Reference Include="System.Web.Webpages.Razor">
109+
<HintPath>packages\Microsoft.AspNet.Webpages.3.2.7\lib\net45\System.Web.Webpages.Razor.dll</HintPath>
110+
</Reference>
111+
<Reference Include="System.Web.Helpers">
112+
<HintPath>packages\Microsoft.AspNet.Webpages.3.2.7\lib\net45\System.Web.Helpers.dll</HintPath>
113+
</Reference>
114+
<Reference Include="Microsoft.Web.Infrastructure">
115+
<HintPath>packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
116+
</Reference>
117+
<Reference Include="System.Web.Mvc">
118+
<HintPath>packages\Microsoft.AspNet.Mvc.5.2.7\lib\net45\System.Web.Mvc.dll</HintPath>
119+
</Reference>
120+
<Reference Include="Microsoft.CodeDom.Providers.DotNetCompilerPlatform">
121+
<HintPath>packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1\lib\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll</HintPath>
122+
</Reference>
123+
</ItemGroup>
124+
<ItemGroup>
125+
<Content Include="Global.asax" />
126+
<Content Include="Scripts\respond.js" />
127+
<Content Include="Scripts\respond.min.js" />
128+
<Content Include="Web.config" />
129+
</ItemGroup>
130+
<ItemGroup>
131+
<Compile Include="App_Start\FilterConfig.cs" />
132+
<Compile Include="App_Start\RouteConfig.cs" />
133+
<Compile Include="App_Start\WebApiConfig.cs" />
134+
<Compile Include="Controllers\AnnotationController.cs" />
135+
<Compile Include="Global.asax.cs">
136+
<DependentUpon>Global.asax</DependentUpon>
137+
</Compile>
138+
<Compile Include="Products\Annotation\Annotator\AbstractTextAnnotator.cs" />
139+
<Compile Include="Products\Annotation\Annotator\AnnotatorFactory.cs" />
140+
<Compile Include="Products\Annotation\Annotator\AreaAnnotator.cs" />
141+
<Compile Include="Products\Annotation\Annotator\ArrowAnnotator.cs" />
142+
<Compile Include="Products\Annotation\Annotator\BaseAnnotator.cs" />
143+
<Compile Include="Products\Annotation\Annotator\DistanceAnnotator.cs" />
144+
<Compile Include="Products\Annotation\Annotator\PointAnnotator.cs" />
145+
<Compile Include="Products\Annotation\Annotator\PolylineAnnotator.cs" />
146+
<Compile Include="Products\Annotation\Annotator\ResourceRedactionAnnotator.cs" />
147+
<Compile Include="Products\Annotation\Annotator\SetLicense.cs" />
148+
<Compile Include="Products\Annotation\Annotator\TextFieldAnnotator.cs" />
149+
<Compile Include="Products\Annotation\Annotator\TextHighlightAnnotator.cs" />
150+
<Compile Include="Products\Annotation\Annotator\TextRedactionAnnotator.cs" />
151+
<Compile Include="Products\Annotation\Annotator\TextReplacementAnnotator.cs" />
152+
<Compile Include="Products\Annotation\Annotator\TextStrikeoutAnnotator.cs" />
153+
<Compile Include="Products\Annotation\Annotator\TextUnderlineAnnotator.cs" />
154+
<Compile Include="Products\Annotation\Annotator\WatermarkAnnotator.cs" />
155+
<Compile Include="Products\Annotation\Config\AnnotationConfiguration.cs" />
156+
<Compile Include="Products\Annotation\Controllers\AnnotationApiController.cs" />
157+
<Compile Include="Products\Annotation\Entity\Annotations.cs" />
158+
<Compile Include="Products\Annotation\Entity\Request\TextCoordinatesRequest.cs" />
159+
<Compile Include="Products\Annotation\Entity\Web\AnnotatedDocumentEntity.cs" />
160+
<Compile Include="Products\Annotation\Entity\Web\AnnotationDataEntity.cs" />
161+
<Compile Include="Products\Annotation\Entity\Web\AnnotationPostedDataEntity.cs" />
162+
<Compile Include="Products\Annotation\Entity\Web\CommentsEntity.cs" />
163+
<Compile Include="Products\Annotation\Entity\Web\PageDataDescriptionEntity.cs" />
164+
<Compile Include="Products\Annotation\Entity\Web\TextRowEntity.cs" />
165+
<Compile Include="Products\Annotation\Util\AnnotationMapper.cs" />
166+
<Compile Include="Products\Annotation\Util\Directory\DirectoryUtils.cs" />
167+
<Compile Include="Products\Annotation\Util\Directory\FilesDirectoryUtils.cs" />
168+
<Compile Include="Products\Annotation\Util\SupportedAnnotations.cs" />
169+
<Compile Include="Products\Common\Config\ApplicationConfiguration.cs" />
170+
<Compile Include="Products\Common\Config\CommonConfiguration.cs" />
171+
<Compile Include="Products\Common\Config\ConfigurationValuesGetter.cs" />
172+
<Compile Include="Products\Common\Config\GlobalConfiguration.cs" />
173+
<Compile Include="Products\Common\Config\ServerConfiguration.cs" />
174+
<Compile Include="Products\Common\Entity\Web\ExceptionEntity.cs" />
175+
<Compile Include="Products\Common\Entity\Web\FileDescriptionEntity.cs" />
176+
<Compile Include="Products\Common\Entity\Web\LoadDocumentEntity.cs" />
177+
<Compile Include="Products\Common\Entity\Web\PageDescriptionEntity.cs" />
178+
<Compile Include="Products\Common\Entity\Web\PostedDataEntity.cs" />
179+
<Compile Include="Products\Common\Entity\Web\UploadedDocumentEntity.cs" />
180+
<Compile Include="Products\Common\Resources\Resources.cs" />
181+
<Compile Include="Products\Common\Util\Comparator\FileNameComparator.cs" />
182+
<Compile Include="Products\Common\Util\Comparator\FileTypeComparator.cs" />
183+
<Compile Include="Products\Common\Util\Directory\IDirectoryUtils.cs" />
184+
<Compile Include="Products\Common\Util\Parser\YamlParser.cs" />
185+
<Compile Include="Properties\AssemblyInfo.cs" />
186+
</ItemGroup>
187+
<ItemGroup>
188+
<Content Include="Views\web.config" />
189+
<None Include="packages.config" />
190+
<Content Include="Views\Annotation\index.cshtml" />
191+
<None Include="Web.Debug.config">
192+
<DependentUpon>Web.config</DependentUpon>
193+
</None>
194+
<None Include="Web.Release.config">
195+
<DependentUpon>Web.config</DependentUpon>
196+
</None>
197+
</ItemGroup>
198+
<ItemGroup>
199+
<Folder Include="App_Data\" />
200+
</ItemGroup>
201+
<PropertyGroup>
202+
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
203+
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
204+
</PropertyGroup>
205+
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
206+
<Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" />
207+
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" Condition="false" />
208+
<ProjectExtensions>
209+
<VisualStudio>
210+
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
211+
<WebProjectProperties>
212+
<UseIIS>True</UseIIS>
213+
<AutoAssignPort>True</AutoAssignPort>
214+
<DevelopmentServerPort>52804</DevelopmentServerPort>
215+
<DevelopmentServerVPath>/</DevelopmentServerVPath>
216+
<IISUrl>http://localhost:8080/annotation</IISUrl>
217+
<NTLMAuthentication>False</NTLMAuthentication>
218+
<UseCustomServer>False</UseCustomServer>
219+
<CustomServerUrl>
220+
</CustomServerUrl>
221+
<SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
222+
</WebProjectProperties>
223+
</FlavorProperties>
224+
</VisualStudio>
225+
</ProjectExtensions>
226+
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
227+
<PropertyGroup>
228+
<ErrorText>Данный проект ссылается на пакеты NuGet, отсутствующие на этом компьютере. Используйте восстановление пакетов NuGet, чтобы скачать их. Дополнительную информацию см. по адресу: http://go.microsoft.com/fwlink/?LinkID=322105. Отсутствует следующий файл: {0}.</ErrorText>
229+
</PropertyGroup>
230+
<Error Condition="!Exists('packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1\build\net46\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props')" Text="$([System.String]::Format('$(ErrorText)', 'packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1\build\net46\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props'))" />
231+
</Target>
232+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
233+
Other similar extension points exist, see Microsoft.Common.targets.
234+
<Target Name="BeforeBuild">
235+
</Target>
236+
<Target Name="AfterBuild">
237+
</Target>
238+
-->
239+
<Target Name="BeforeBuild" DependsOnTargets="PrepareForBuild">
240+
<Exec WorkingDirectory="client\" Command="..\packages\Node-Kit.11.1.0.1\node\win\node.exe ..\packages\Node-Kit.11.1.0.1\npm\bin\npm-cli.js install --scripts-prepend-node-path" Condition=" '$(OS)' == 'Windows_NT' " />
241+
<Exec WorkingDirectory="client\" Command="..\packages\Node-Kit.11.1.0.1\node\win\node.exe ..\packages\Node-Kit.11.1.0.1\npm\bin\npm-cli.js run build --scripts-prepend-node-path" Condition=" '$(OS)' == 'Windows_NT' " />
242+
</Target>
243+
<Target Name="AfterBuild">
244+
</Target>
245+
</Project>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
2+
<s:String x:Key="/Default/CodeInspection/CSharpLanguageProject/LanguageLevel/@EntryValue">CSharp90</s:String></wpf:ResourceDictionary>
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.32428.217
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GroupDocs.Annotation.AspNetMvc", "GroupDocs.Annotation.AspNetMvc.csproj", "{2BD1D7B5-8EE3-4A8C-9B79-278258349297}"
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+
{2BD1D7B5-8EE3-4A8C-9B79-278258349297}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{2BD1D7B5-8EE3-4A8C-9B79-278258349297}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{2BD1D7B5-8EE3-4A8C-9B79-278258349297}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{2BD1D7B5-8EE3-4A8C-9B79-278258349297}.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 = {416743BA-B746-445A-81C1-2589F8E42ADE}
24+
EndGlobalSection
25+
EndGlobal

0 commit comments

Comments
 (0)