Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
freever committed Oct 14, 2024
1 parent 05565b4 commit e1b66e1
Show file tree
Hide file tree
Showing 10 changed files with 6 additions and 190 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/blauhaus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ jobs:
run: |
dotnet build ./src/Blauhaus.Analytics.sln --configuration Release
dotnet pack ./src/Blauhaus.Analytics.Abstractions/Blauhaus.Analytics.Abstractions.csproj -p:PackageVersion=${VERSION_NAME} --no-build --output ./ --configuration Release
dotnet pack ./src/Blauhaus.Analytics.Xamarin/Blauhaus.Analytics.Xamarin.csproj -p:PackageVersion=${VERSION_NAME} --no-build --output ./ --configuration Release
dotnet pack ./src/Blauhaus.Analytics.Xamarin.AppCenter/Blauhaus.Analytics.Xamarin.AppCenter.csproj -p:PackageVersion=${VERSION_NAME} --no-build --output ./ --configuration Release
dotnet pack ./src/Blauhaus.Analytics.Console/Blauhaus.Analytics.Console.csproj -p:PackageVersion=${VERSION_NAME} --no-build --output ./ --configuration Release
dotnet pack ./src/Blauhaus.Analytics.AspNetCore/Blauhaus.Analytics.AspNetCore.csproj -p:PackageVersion=${VERSION_NAME} --no-build --output ./ --configuration Release
dotnet pack ./src/Blauhaus.Analytics.Common/Blauhaus.Analytics.Common.csproj -p:PackageVersion=${VERSION_NAME} --no-build --output ./ --configuration Release
Expand All @@ -36,8 +34,6 @@ jobs:
- name: Deploy NuGet Package
run: |
dotnet nuget push /home/runner/work/Blauhaus.Analytics/Blauhaus.Analytics/Blauhaus.Analytics.Abstractions.${VERSION_NAME}.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
dotnet nuget push /home/runner/work/Blauhaus.Analytics/Blauhaus.Analytics/Blauhaus.Analytics.Xamarin.${VERSION_NAME}.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
dotnet nuget push /home/runner/work/Blauhaus.Analytics/Blauhaus.Analytics/Blauhaus.Analytics.Xamarin.AppCenter.${VERSION_NAME}.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
dotnet nuget push /home/runner/work/Blauhaus.Analytics/Blauhaus.Analytics/Blauhaus.Analytics.Console.${VERSION_NAME}.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
dotnet nuget push /home/runner/work/Blauhaus.Analytics/Blauhaus.Analytics/Blauhaus.Analytics.AspNetCore.${VERSION_NAME}.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
dotnet nuget push /home/runner/work/Blauhaus.Analytics/Blauhaus.Analytics/Blauhaus.Analytics.Common.${VERSION_NAME}.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
<PackageReference Include="Blauhaus.Common.ValueObjects" Version="2.4.4" />
<PackageReference Include="Blauhaus.Responses" Version="0.4.11" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.2" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System.Collections.Generic;
using System.Globalization;
using Newtonsoft.Json;
using System.Text.Json;

namespace Blauhaus.Analytics.Abstractions.Extensions
{
Expand All @@ -22,10 +21,7 @@ public static Dictionary<string, string> ToDictionaryOfStrings(this Dictionary<s
}
else
{
stringifiedProperties[property.Key] = JsonConvert.SerializeObject(property.Value, Formatting.Indented, new JsonSerializerSettings
{
Culture = CultureInfo.InvariantCulture
});
stringifiedProperties[property.Key] = JsonSerializer.Serialize(property.Value);
}
}
}
Expand Down
7 changes: 2 additions & 5 deletions src/Blauhaus.Analytics.Common/Telemetry/TelemetryDecorator.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using System.Collections.Generic;
using System.Globalization;
using System.Text.Json;
using Blauhaus.Analytics.Abstractions.Config;
using Blauhaus.Analytics.Abstractions.Operation;
using Blauhaus.Analytics.Abstractions.Session;
using Microsoft.ApplicationInsights.Channel;
using Microsoft.ApplicationInsights.DataContracts;
using Newtonsoft.Json;

namespace Blauhaus.Analytics.Common.Telemetry
{
Expand Down Expand Up @@ -83,10 +83,7 @@ public TTelemetry DecorateTelemetry<TTelemetry>(TTelemetry telemetry,
{
if (!property.Value.GetType().IsValueType && property.Value.GetType() != typeof(string))
{
telemetry.Properties[property.Key] = JsonConvert.SerializeObject(property.Value, new JsonSerializerSettings
{
Culture = CultureInfo.InvariantCulture
});
telemetry.Properties[property.Key] = JsonSerializer.Serialize(property.Value);
}
else
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Blauhaus.DeviceServices.Abstractions" Version="1.3.8" />
<PackageReference Include="Blauhaus.DeviceServices.Abstractions" Version="1.4.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
using Blauhaus.TestHelpers.MockBuilders;
using Microsoft.Extensions.Logging;
using Moq;
using Newtonsoft.Json.Linq;
using NUnit.Framework;
using System;
using System.Collections.Generic;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Blauhaus.DeviceServices.Abstractions" Version="1.4.0" />
<PackageReference Include="Blauhaus.TestHelpers" Version="1.4.4" />
<PackageReference Include="nunit" Version="4.2.2" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0">
Expand All @@ -28,6 +29,5 @@
<ProjectReference Include="..\Blauhaus.Analytics.AspNetCore\Blauhaus.Analytics.AspNetCore.csproj" />
<ProjectReference Include="..\Blauhaus.Analytics.Common\Blauhaus.Analytics.Common.csproj" />
<ProjectReference Include="..\Blauhaus.Analytics.Console\Blauhaus.Analytics.Console.csproj" />
<ProjectReference Include="..\Blauhaus.Analytics.Xamarin\Blauhaus.Analytics.Xamarin.csproj" />
</ItemGroup>
</Project>

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,4 @@
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="5.0.5" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Blauhaus.Analytics.Xamarin\Blauhaus.Analytics.Xamarin.csproj" />
</ItemGroup>

</Project>
100 changes: 0 additions & 100 deletions src/Blauhaus.Analytics.sln
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ VisualStudioVersion = 17.2.32210.308
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Blauhaus.Analytics.Abstractions", "Blauhaus.Analytics.Abstractions\Blauhaus.Analytics.Abstractions.csproj", "{8D5641CB-7191-4A32-BBB9-99A1AAE630F8}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Blauhaus.Analytics.Xamarin", "Blauhaus.Analytics.Xamarin\Blauhaus.Analytics.Xamarin.csproj", "{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Blauhaus.Analytics.AspNetCore", "Blauhaus.Analytics.AspNetCore\Blauhaus.Analytics.AspNetCore.csproj", "{B64A36EC-E93C-4E45-A886-4FF527FD24AD}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Blauhaus.Analytics.Tests", "Blauhaus.Analytics.Tests\Blauhaus.Analytics.Tests.csproj", "{4667D1C5-BC5F-42B4-B1D6-C2D6A89FF293}"
Expand All @@ -24,8 +22,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Blauhaus.Analytics.TestHelp
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Blauhaus.Analytics.Orleans", "Blauhaus.Analytics.Orleans\Blauhaus.Analytics.Orleans.csproj", "{B41E1145-FCB7-4F14-88BB-32A3C5698D13}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Blauhaus.Analytics.Xamarin.AppCenter", "Blauhaus.Analytics.Xamarin.AppCenter\Blauhaus.Analytics.Xamarin.AppCenter.csproj", "{FAF78202-823C-4C05-9F99-F4F5C02194F7}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Blauhaus.Analytics.ILogger", "Blauhaus.Analytics.ILogger\Blauhaus.Analytics.ILogger.csproj", "{311DA8F3-1636-412F-A897-1B900E6636B4}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Blauhaus.Analytics.Serilog", "Blauhaus.Analytics.Serilog\Blauhaus.Analytics.Serilog.csproj", "{B136173F-7D5B-4363-A264-041E44607FBD}"
Expand Down Expand Up @@ -114,54 +110,6 @@ Global
{8D5641CB-7191-4A32-BBB9-99A1AAE630F8}.Release|x64.Build.0 = Release|Any CPU
{8D5641CB-7191-4A32-BBB9-99A1AAE630F8}.Release|x86.ActiveCfg = Release|Any CPU
{8D5641CB-7191-4A32-BBB9-99A1AAE630F8}.Release|x86.Build.0 = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Ad-Hoc|ARM.Build.0 = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Ad-Hoc|x64.Build.0 = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Ad-Hoc|x86.Build.0 = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.AppStore|Any CPU.Build.0 = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.AppStore|ARM.ActiveCfg = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.AppStore|ARM.Build.0 = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.AppStore|iPhone.ActiveCfg = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.AppStore|iPhone.Build.0 = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.AppStore|x64.ActiveCfg = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.AppStore|x64.Build.0 = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.AppStore|x86.ActiveCfg = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.AppStore|x86.Build.0 = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Debug|ARM.ActiveCfg = Debug|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Debug|ARM.Build.0 = Debug|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Debug|iPhone.Build.0 = Debug|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Debug|x64.ActiveCfg = Debug|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Debug|x64.Build.0 = Debug|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Debug|x86.ActiveCfg = Debug|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Debug|x86.Build.0 = Debug|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Release|Any CPU.Build.0 = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Release|ARM.ActiveCfg = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Release|ARM.Build.0 = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Release|iPhone.ActiveCfg = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Release|iPhone.Build.0 = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Release|x64.ActiveCfg = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Release|x64.Build.0 = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Release|x86.ActiveCfg = Release|Any CPU
{739B0DB7-C5DB-47F2-8BD2-A8CAEEAEFEF2}.Release|x86.Build.0 = Release|Any CPU
{B64A36EC-E93C-4E45-A886-4FF527FD24AD}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
{B64A36EC-E93C-4E45-A886-4FF527FD24AD}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
{B64A36EC-E93C-4E45-A886-4FF527FD24AD}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU
Expand Down Expand Up @@ -450,54 +398,6 @@ Global
{B41E1145-FCB7-4F14-88BB-32A3C5698D13}.Release|x64.Build.0 = Release|Any CPU
{B41E1145-FCB7-4F14-88BB-32A3C5698D13}.Release|x86.ActiveCfg = Release|Any CPU
{B41E1145-FCB7-4F14-88BB-32A3C5698D13}.Release|x86.Build.0 = Release|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Ad-Hoc|Any CPU.ActiveCfg = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Ad-Hoc|Any CPU.Build.0 = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Ad-Hoc|ARM.ActiveCfg = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Ad-Hoc|ARM.Build.0 = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Ad-Hoc|iPhoneSimulator.Build.0 = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Ad-Hoc|x64.ActiveCfg = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Ad-Hoc|x64.Build.0 = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Ad-Hoc|x86.ActiveCfg = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Ad-Hoc|x86.Build.0 = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.AppStore|Any CPU.ActiveCfg = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.AppStore|Any CPU.Build.0 = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.AppStore|ARM.ActiveCfg = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.AppStore|ARM.Build.0 = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.AppStore|iPhone.Build.0 = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.AppStore|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.AppStore|iPhoneSimulator.Build.0 = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.AppStore|x64.ActiveCfg = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.AppStore|x64.Build.0 = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.AppStore|x86.ActiveCfg = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.AppStore|x86.Build.0 = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Debug|ARM.ActiveCfg = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Debug|ARM.Build.0 = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Debug|iPhone.Build.0 = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Debug|x64.ActiveCfg = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Debug|x64.Build.0 = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Debug|x86.ActiveCfg = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Debug|x86.Build.0 = Debug|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Release|Any CPU.Build.0 = Release|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Release|ARM.ActiveCfg = Release|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Release|ARM.Build.0 = Release|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Release|iPhone.ActiveCfg = Release|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Release|iPhone.Build.0 = Release|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Release|x64.ActiveCfg = Release|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Release|x64.Build.0 = Release|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Release|x86.ActiveCfg = Release|Any CPU
{FAF78202-823C-4C05-9F99-F4F5C02194F7}.Release|x86.Build.0 = Release|Any CPU
{311DA8F3-1636-412F-A897-1B900E6636B4}.Ad-Hoc|Any CPU.ActiveCfg = Debug|Any CPU
{311DA8F3-1636-412F-A897-1B900E6636B4}.Ad-Hoc|Any CPU.Build.0 = Debug|Any CPU
{311DA8F3-1636-412F-A897-1B900E6636B4}.Ad-Hoc|ARM.ActiveCfg = Debug|Any CPU
Expand Down

0 comments on commit e1b66e1

Please sign in to comment.