Skip to content

Commit 3e9ba18

Browse files
author
babelshift
committed
Add support for multiple nuget framework targets.
Add .NET 4.5.2 nuget target.
1 parent c9df2d8 commit 3e9ba18

6 files changed

Lines changed: 359 additions & 6 deletions

File tree

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
using System.Reflection;
2+
using System.Runtime.CompilerServices;
3+
using System.Runtime.InteropServices;
4+
5+
// General Information about an assembly is controlled through the following
6+
// set of attributes. Change these attribute values to modify the information
7+
// associated with an assembly.
8+
[assembly: AssemblyTitle("SteamWebAPI2")]
9+
[assembly: AssemblyDescription("This is a .NET library that makes it easy to use the Steam Web API. It conveniently wraps around all of the JSON data and ugly API details with clean methods, structures and classes.")]
10+
[assembly: AssemblyConfiguration("")]
11+
[assembly: AssemblyCompany("Justin Skiles")]
12+
[assembly: AssemblyProduct("SteamWebAPI2")]
13+
[assembly: AssemblyCopyright("Copyright © 2015")]
14+
[assembly: AssemblyTrademark("")]
15+
[assembly: AssemblyCulture("")]
16+
17+
// Setting ComVisible to false makes the types in this assembly not visible
18+
// to COM components. If you need to access a type in this assembly from
19+
// COM, set the ComVisible attribute to true on that type.
20+
[assembly: ComVisible(false)]
21+
22+
// The following GUID is for the ID of the typelib if this project is exposed to COM
23+
[assembly: Guid("d16dfa6f-eb9a-4668-8d24-232e7ada8d98")]
24+
25+
// Version information for an assembly consists of the following four values:
26+
//
27+
// Major Version
28+
// Minor Version
29+
// Build Number
30+
// Revision
31+
//
32+
// You can specify all the values or you can default the Build and Revision Numbers
33+
// by using the '*' as shown below:
34+
// [assembly: AssemblyVersion("1.0.*")]
35+
[assembly: AssemblyVersion("1.1.0.0")]
36+
[assembly: AssemblyFileVersion("1.0.0.0")]
Lines changed: 301 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,301 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
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+
<ProjectGuid>{D16DFA6F-EB9A-4668-8D24-232E7ADA8D98}</ProjectGuid>
8+
<OutputType>Library</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>SteamWebAPI2.Net452</RootNamespace>
11+
<AssemblyName>SteamWebAPI2</AssemblyName>
12+
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
13+
<FileAlignment>512</FileAlignment>
14+
<TargetFrameworkProfile />
15+
</PropertyGroup>
16+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17+
<DebugSymbols>true</DebugSymbols>
18+
<DebugType>full</DebugType>
19+
<Optimize>false</Optimize>
20+
<OutputPath>..\bin\Debug\net452\</OutputPath>
21+
<DefineConstants>DEBUG;TRACE</DefineConstants>
22+
<ErrorReport>prompt</ErrorReport>
23+
<WarningLevel>4</WarningLevel>
24+
</PropertyGroup>
25+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26+
<DebugType>pdbonly</DebugType>
27+
<Optimize>true</Optimize>
28+
<OutputPath>..\bin\Release\net452\</OutputPath>
29+
<DefineConstants>TRACE</DefineConstants>
30+
<ErrorReport>prompt</ErrorReport>
31+
<WarningLevel>4</WarningLevel>
32+
</PropertyGroup>
33+
<ItemGroup>
34+
<Reference Include="Newtonsoft.Json, Version=7.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
35+
<HintPath>..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
36+
<Private>True</Private>
37+
</Reference>
38+
<Reference Include="System" />
39+
<Reference Include="System.configuration" />
40+
<Reference Include="System.Core" />
41+
<Reference Include="System.Xml.Linq" />
42+
<Reference Include="System.Data.DataSetExtensions" />
43+
<Reference Include="Microsoft.CSharp" />
44+
<Reference Include="System.Data" />
45+
<Reference Include="System.Net.Http" />
46+
<Reference Include="System.Xml" />
47+
</ItemGroup>
48+
<ItemGroup>
49+
<Compile Include="..\SteamWebAPI2\ErrorMessages.Designer.cs">
50+
<Link>ErrorMessages.Designer.cs</Link>
51+
</Compile>
52+
<Compile Include="..\SteamWebAPI2\Exceptions\InvalidSteamCommunityUriException.cs">
53+
<Link>Exceptions\InvalidSteamCommunityUriException.cs</Link>
54+
</Compile>
55+
<Compile Include="..\SteamWebAPI2\Exceptions\SteamIdNotConstructedException.cs">
56+
<Link>Exceptions\SteamIdNotConstructedException.cs</Link>
57+
</Compile>
58+
<Compile Include="..\SteamWebAPI2\Exceptions\VanityUrlNotResolvedException.cs">
59+
<Link>Exceptions\VanityUrlNotResolvedException.cs</Link>
60+
</Compile>
61+
<Compile Include="..\SteamWebAPI2\Interfaces\CSGOServers.cs">
62+
<Link>Interfaces\CSGOServers.cs</Link>
63+
</Compile>
64+
<Compile Include="..\SteamWebAPI2\Interfaces\DOTA2Econ.cs">
65+
<Link>Interfaces\DOTA2Econ.cs</Link>
66+
</Compile>
67+
<Compile Include="..\SteamWebAPI2\Interfaces\DOTA2Fantasy.cs">
68+
<Link>Interfaces\DOTA2Fantasy.cs</Link>
69+
</Compile>
70+
<Compile Include="..\SteamWebAPI2\Interfaces\DOTA2Match.cs">
71+
<Link>Interfaces\DOTA2Match.cs</Link>
72+
</Compile>
73+
<Compile Include="..\SteamWebAPI2\Interfaces\DOTA2Ticket.cs">
74+
<Link>Interfaces\DOTA2Ticket.cs</Link>
75+
</Compile>
76+
<Compile Include="..\SteamWebAPI2\Interfaces\EconItems.cs">
77+
<Link>Interfaces\EconItems.cs</Link>
78+
</Compile>
79+
<Compile Include="..\SteamWebAPI2\Interfaces\GCVersion.cs">
80+
<Link>Interfaces\GCVersion.cs</Link>
81+
</Compile>
82+
<Compile Include="..\SteamWebAPI2\Interfaces\PlayerService.cs">
83+
<Link>Interfaces\PlayerService.cs</Link>
84+
</Compile>
85+
<Compile Include="..\SteamWebAPI2\Interfaces\SteamApps.cs">
86+
<Link>Interfaces\SteamApps.cs</Link>
87+
</Compile>
88+
<Compile Include="..\SteamWebAPI2\Interfaces\SteamEconomy.cs">
89+
<Link>Interfaces\SteamEconomy.cs</Link>
90+
</Compile>
91+
<Compile Include="..\SteamWebAPI2\Interfaces\SteamNews.cs">
92+
<Link>Interfaces\SteamNews.cs</Link>
93+
</Compile>
94+
<Compile Include="..\SteamWebAPI2\Interfaces\SteamRemoteStorage.cs">
95+
<Link>Interfaces\SteamRemoteStorage.cs</Link>
96+
</Compile>
97+
<Compile Include="..\SteamWebAPI2\Interfaces\SteamUser.cs">
98+
<Link>Interfaces\SteamUser.cs</Link>
99+
</Compile>
100+
<Compile Include="..\SteamWebAPI2\Interfaces\SteamUserStats.cs">
101+
<Link>Interfaces\SteamUserStats.cs</Link>
102+
</Compile>
103+
<Compile Include="..\SteamWebAPI2\Interfaces\SteamWebAPIUtil.cs">
104+
<Link>Interfaces\SteamWebAPIUtil.cs</Link>
105+
</Compile>
106+
<Compile Include="..\SteamWebAPI2\Interfaces\TFItems.cs">
107+
<Link>Interfaces\TFItems.cs</Link>
108+
</Compile>
109+
<Compile Include="..\SteamWebAPI2\Models\CSGO\ServerStatusResultContainer.cs">
110+
<Link>Models\CSGO\ServerStatusResultContainer.cs</Link>
111+
</Compile>
112+
<Compile Include="..\SteamWebAPI2\Models\DOTA2\GameItemResultContainer.cs">
113+
<Link>Models\DOTA2\GameItemResultContainer.cs</Link>
114+
</Compile>
115+
<Compile Include="..\SteamWebAPI2\Models\DOTA2\HeroResultContainer.cs">
116+
<Link>Models\DOTA2\HeroResultContainer.cs</Link>
117+
</Compile>
118+
<Compile Include="..\SteamWebAPI2\Models\DOTA2\ItemIconPathResultContainer.cs">
119+
<Link>Models\DOTA2\ItemIconPathResultContainer.cs</Link>
120+
</Compile>
121+
<Compile Include="..\SteamWebAPI2\Models\DOTA2\LeagueResultContainer.cs">
122+
<Link>Models\DOTA2\LeagueResultContainer.cs</Link>
123+
</Compile>
124+
<Compile Include="..\SteamWebAPI2\Models\DOTA2\LiveLeagueGameResultContainer.cs">
125+
<Link>Models\DOTA2\LiveLeagueGameResultContainer.cs</Link>
126+
</Compile>
127+
<Compile Include="..\SteamWebAPI2\Models\DOTA2\MatchDetailResultContainer.cs">
128+
<Link>Models\DOTA2\MatchDetailResultContainer.cs</Link>
129+
</Compile>
130+
<Compile Include="..\SteamWebAPI2\Models\DOTA2\MatchHistoryBySequenceNumberResultContainer.cs">
131+
<Link>Models\DOTA2\MatchHistoryBySequenceNumberResultContainer.cs</Link>
132+
</Compile>
133+
<Compile Include="..\SteamWebAPI2\Models\DOTA2\MatchHistoryResultContainer.cs">
134+
<Link>Models\DOTA2\MatchHistoryResultContainer.cs</Link>
135+
</Compile>
136+
<Compile Include="..\SteamWebAPI2\Models\DOTA2\PlayerOfficialInfoResultContainer.cs">
137+
<Link>Models\DOTA2\PlayerOfficialInfoResultContainer.cs</Link>
138+
</Compile>
139+
<Compile Include="..\SteamWebAPI2\Models\DOTA2\PrizePoolResultContainer.cs">
140+
<Link>Models\DOTA2\PrizePoolResultContainer.cs</Link>
141+
</Compile>
142+
<Compile Include="..\SteamWebAPI2\Models\DOTA2\ProPlayerListResultContainer.cs">
143+
<Link>Models\DOTA2\ProPlayerListResultContainer.cs</Link>
144+
</Compile>
145+
<Compile Include="..\SteamWebAPI2\Models\DOTA2\RarityResultContainer.cs">
146+
<Link>Models\DOTA2\RarityResultContainer.cs</Link>
147+
</Compile>
148+
<Compile Include="..\SteamWebAPI2\Models\DOTA2\TeamInfoResultContainer.cs">
149+
<Link>Models\DOTA2\TeamInfoResultContainer.cs</Link>
150+
</Compile>
151+
<Compile Include="..\SteamWebAPI2\Models\GameClientResultContainer.cs">
152+
<Link>Models\GameClientResultContainer.cs</Link>
153+
</Compile>
154+
<Compile Include="..\SteamWebAPI2\Models\GameEconomy\EconItemResultContainer.cs">
155+
<Link>Models\GameEconomy\EconItemResultContainer.cs</Link>
156+
</Compile>
157+
<Compile Include="..\SteamWebAPI2\Models\GameEconomy\SchemaResultContainer.cs">
158+
<Link>Models\GameEconomy\SchemaResultContainer.cs</Link>
159+
</Compile>
160+
<Compile Include="..\SteamWebAPI2\Models\GameEconomy\SchemaURLResultContainer.cs">
161+
<Link>Models\GameEconomy\SchemaURLResultContainer.cs</Link>
162+
</Compile>
163+
<Compile Include="..\SteamWebAPI2\Models\GameEconomy\StoreMetaDataResultContainer.cs">
164+
<Link>Models\GameEconomy\StoreMetaDataResultContainer.cs</Link>
165+
</Compile>
166+
<Compile Include="..\SteamWebAPI2\Models\GameEconomy\StoreStatusResultContainer.cs">
167+
<Link>Models\GameEconomy\StoreStatusResultContainer.cs</Link>
168+
</Compile>
169+
<Compile Include="..\SteamWebAPI2\Models\SchemaForGameResultContainer.cs">
170+
<Link>Models\SchemaForGameResultContainer.cs</Link>
171+
</Compile>
172+
<Compile Include="..\SteamWebAPI2\Models\SteamApiListContainer.cs">
173+
<Link>Models\SteamApiListContainer.cs</Link>
174+
</Compile>
175+
<Compile Include="..\SteamWebAPI2\Models\SteamAppListResultContainer.cs">
176+
<Link>Models\SteamAppListResultContainer.cs</Link>
177+
</Compile>
178+
<Compile Include="..\SteamWebAPI2\Models\SteamAppUpToDateCheckResultContainer.cs">
179+
<Link>Models\SteamAppUpToDateCheckResultContainer.cs</Link>
180+
</Compile>
181+
<Compile Include="..\SteamWebAPI2\Models\SteamCommunity\BadgesResultContainer.cs">
182+
<Link>Models\SteamCommunity\BadgesResultContainer.cs</Link>
183+
</Compile>
184+
<Compile Include="..\SteamWebAPI2\Models\SteamCommunity\CommunityBadgeProgressResultContainer.cs">
185+
<Link>Models\SteamCommunity\CommunityBadgeProgressResultContainer.cs</Link>
186+
</Compile>
187+
<Compile Include="..\SteamWebAPI2\Models\SteamCommunity\FriendListResultContainer.cs">
188+
<Link>Models\SteamCommunity\FriendListResultContainer.cs</Link>
189+
</Compile>
190+
<Compile Include="..\SteamWebAPI2\Models\SteamCommunity\GlobalAchievementPercentagesResultContainer.cs">
191+
<Link>Models\SteamCommunity\GlobalAchievementPercentagesResultContainer.cs</Link>
192+
</Compile>
193+
<Compile Include="..\SteamWebAPI2\Models\SteamCommunity\GlobalStatsForGameResultContainer.cs">
194+
<Link>Models\SteamCommunity\GlobalStatsForGameResultContainer.cs</Link>
195+
</Compile>
196+
<Compile Include="..\SteamWebAPI2\Models\SteamCommunity\PlayerSummaryResultContainer.cs">
197+
<Link>Models\SteamCommunity\PlayerSummaryResultContainer.cs</Link>
198+
</Compile>
199+
<Compile Include="..\SteamWebAPI2\Models\SteamCommunity\ResolveVanityUrlResultContainer.cs">
200+
<Link>Models\SteamCommunity\ResolveVanityUrlResultContainer.cs</Link>
201+
</Compile>
202+
<Compile Include="..\SteamWebAPI2\Models\SteamCommunity\SteamCommunityProfile.cs">
203+
<Link>Models\SteamCommunity\SteamCommunityProfile.cs</Link>
204+
</Compile>
205+
<Compile Include="..\SteamWebAPI2\Models\SteamCommunity\SteamLevelResultContainer.cs">
206+
<Link>Models\SteamCommunity\SteamLevelResultContainer.cs</Link>
207+
</Compile>
208+
<Compile Include="..\SteamWebAPI2\Models\SteamCommunity\UserGroupListResultContainer.cs">
209+
<Link>Models\SteamCommunity\UserGroupListResultContainer.cs</Link>
210+
</Compile>
211+
<Compile Include="..\SteamWebAPI2\Models\SteamEconomy\AssetClassInfoResultContainer.cs">
212+
<Link>Models\SteamEconomy\AssetClassInfoResultContainer.cs</Link>
213+
</Compile>
214+
<Compile Include="..\SteamWebAPI2\Models\SteamEconomy\AssetPriceResultContainer.cs">
215+
<Link>Models\SteamEconomy\AssetPriceResultContainer.cs</Link>
216+
</Compile>
217+
<Compile Include="..\SteamWebAPI2\Models\SteamId.cs">
218+
<Link>Models\SteamId.cs</Link>
219+
</Compile>
220+
<Compile Include="..\SteamWebAPI2\Models\SteamInterface.cs">
221+
<Link>Models\SteamInterface.cs</Link>
222+
</Compile>
223+
<Compile Include="..\SteamWebAPI2\Models\SteamNewsResultContainer.cs">
224+
<Link>Models\SteamNewsResultContainer.cs</Link>
225+
</Compile>
226+
<Compile Include="..\SteamWebAPI2\Models\SteamPlayer\CurrentPlayersResultContainer.cs">
227+
<Link>Models\SteamPlayer\CurrentPlayersResultContainer.cs</Link>
228+
</Compile>
229+
<Compile Include="..\SteamWebAPI2\Models\SteamPlayer\OwnedGamesResultContainer.cs">
230+
<Link>Models\SteamPlayer\OwnedGamesResultContainer.cs</Link>
231+
</Compile>
232+
<Compile Include="..\SteamWebAPI2\Models\SteamPlayer\PlayerAchievementResultContainer.cs">
233+
<Link>Models\SteamPlayer\PlayerAchievementResultContainer.cs</Link>
234+
</Compile>
235+
<Compile Include="..\SteamWebAPI2\Models\SteamPlayer\PlayerBansContainer.cs">
236+
<Link>Models\SteamPlayer\PlayerBansContainer.cs</Link>
237+
</Compile>
238+
<Compile Include="..\SteamWebAPI2\Models\SteamPlayer\PlayingSharedGameResultContainer.cs">
239+
<Link>Models\SteamPlayer\PlayingSharedGameResultContainer.cs</Link>
240+
</Compile>
241+
<Compile Include="..\SteamWebAPI2\Models\SteamPlayer\RecentlyPlayedGameResultContainer.cs">
242+
<Link>Models\SteamPlayer\RecentlyPlayedGameResultContainer.cs</Link>
243+
</Compile>
244+
<Compile Include="..\SteamWebAPI2\Models\SteamServerInfo.cs">
245+
<Link>Models\SteamServerInfo.cs</Link>
246+
</Compile>
247+
<Compile Include="..\SteamWebAPI2\Models\TF2\GoldenWrenchResultContainer.cs">
248+
<Link>Models\TF2\GoldenWrenchResultContainer.cs</Link>
249+
</Compile>
250+
<Compile Include="..\SteamWebAPI2\Models\UGCFileDetailsResultContainer.cs">
251+
<Link>Models\UGCFileDetailsResultContainer.cs</Link>
252+
</Compile>
253+
<Compile Include="..\SteamWebAPI2\Models\UserStatsForGameResultContainer.cs">
254+
<Link>Models\UserStatsForGameResultContainer.cs</Link>
255+
</Compile>
256+
<Compile Include="..\SteamWebAPI2\SteamWebInterface.cs">
257+
<Link>SteamWebInterface.cs</Link>
258+
</Compile>
259+
<Compile Include="..\SteamWebAPI2\SteamWebRequest.cs">
260+
<Link>SteamWebRequest.cs</Link>
261+
</Compile>
262+
<Compile Include="..\SteamWebAPI2\SteamWebRequestParameter.cs">
263+
<Link>SteamWebRequestParameter.cs</Link>
264+
</Compile>
265+
<Compile Include="..\SteamWebAPI2\Utilities\DateTimeExtensions.cs">
266+
<Link>Utilities\DateTimeExtensions.cs</Link>
267+
</Compile>
268+
<Compile Include="..\SteamWebAPI2\Utilities\JsonConverters\AssetClassInfoJsonConverter.cs">
269+
<Link>Utilities\JsonConverters\AssetClassInfoJsonConverter.cs</Link>
270+
</Compile>
271+
<Compile Include="..\SteamWebAPI2\Utilities\JsonConverters\CSGODataCenterJsonConverter.cs">
272+
<Link>Utilities\JsonConverters\CSGODataCenterJsonConverter.cs</Link>
273+
</Compile>
274+
<Compile Include="..\SteamWebAPI2\Utilities\JsonConverters\GlobalStatJsonConverter.cs">
275+
<Link>Utilities\JsonConverters\GlobalStatJsonConverter.cs</Link>
276+
</Compile>
277+
<Compile Include="..\SteamWebAPI2\Utilities\JsonConverters\TeamInfoJsonConverter.cs">
278+
<Link>Utilities\JsonConverters\TeamInfoJsonConverter.cs</Link>
279+
</Compile>
280+
<Compile Include="..\SteamWebAPI2\Utilities\JsonConverters\UnixTimeJsonConverter.cs">
281+
<Link>Utilities\JsonConverters\UnixTimeJsonConverter.cs</Link>
282+
</Compile>
283+
<Compile Include="Properties\AssemblyInfo.cs" />
284+
</ItemGroup>
285+
<ItemGroup>
286+
<EmbeddedResource Include="..\SteamWebAPI2\ErrorMessages.resx">
287+
<Link>ErrorMessages.resx</Link>
288+
</EmbeddedResource>
289+
</ItemGroup>
290+
<ItemGroup>
291+
<None Include="packages.config" />
292+
</ItemGroup>
293+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
294+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
295+
Other similar extension points exist, see Microsoft.Common.targets.
296+
<Target Name="BeforeBuild">
297+
</Target>
298+
<Target Name="AfterBuild">
299+
</Target>
300+
-->
301+
</Project>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<packages>
3+
<package id="Newtonsoft.Json" version="7.0.1" targetFramework="net452" />
4+
</packages>

SteamWebAPI2.sln

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 14
4-
VisualStudioVersion = 14.0.23107.0
4+
VisualStudioVersion = 14.0.24720.0
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SteamWebAPI2", "SteamWebAPI2\SteamWebAPI2.csproj", "{F5BE3B4F-5F56-45CB-9EEB-2BC017AC8EB5}"
77
EndProject
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SteamWebAPI2.Net452", "SteamWebAPI2.Net452\SteamWebAPI2.Net452.csproj", "{D16DFA6F-EB9A-4668-8D24-232E7ADA8D98}"
9+
EndProject
810
Global
911
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1012
Debug|Any CPU = Debug|Any CPU
@@ -15,6 +17,10 @@ Global
1517
{F5BE3B4F-5F56-45CB-9EEB-2BC017AC8EB5}.Debug|Any CPU.Build.0 = Debug|Any CPU
1618
{F5BE3B4F-5F56-45CB-9EEB-2BC017AC8EB5}.Release|Any CPU.ActiveCfg = Release|Any CPU
1719
{F5BE3B4F-5F56-45CB-9EEB-2BC017AC8EB5}.Release|Any CPU.Build.0 = Release|Any CPU
20+
{D16DFA6F-EB9A-4668-8D24-232E7ADA8D98}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
21+
{D16DFA6F-EB9A-4668-8D24-232E7ADA8D98}.Debug|Any CPU.Build.0 = Debug|Any CPU
22+
{D16DFA6F-EB9A-4668-8D24-232E7ADA8D98}.Release|Any CPU.ActiveCfg = Release|Any CPU
23+
{D16DFA6F-EB9A-4668-8D24-232E7ADA8D98}.Release|Any CPU.Build.0 = Release|Any CPU
1824
EndGlobalSection
1925
GlobalSection(SolutionProperties) = preSolution
2026
HideSolutionNode = FALSE

0 commit comments

Comments
 (0)