Skip to content

Commit 1e1c4f3

Browse files
author
Jose Carvalho
committed
A new PR was added to the solution ("LogglyCsharp.snk") and the projects were signed.
1 parent 6ad03ab commit 1e1c4f3

File tree

11 files changed

+480
-458
lines changed

11 files changed

+480
-458
lines changed

Diff for: LogglyCsharp.snk

596 Bytes
Binary file not shown.

Diff for: SolutionItems/Properties/AssemblyInfo.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@
1111
[assembly: AllowPartiallyTrustedCallers]
1212
[assembly: AssemblyVersion("4.6.1.0")]
1313
[assembly: AssemblyProduct("loggly-csharp")]
14-
[assembly: InternalsVisibleTo("Loggly.Tests")]
14+
[assembly: InternalsVisibleTo("Loggly.Tests,PublicKey=00240000048000009400000006020000002400005253413100040000010001000f6c6697fc064ad5057b7e916981b7b3da94171a80fb14553f9c67eee7f939f30dc9ed6fd555319be7a7c394ea98e22ab5286220bda2be17f71a99a47fdccb14115a13a37c99a8445811155c6e75257f811009944c37c6757e5eb6078e84c1875966ec3d05194778650cad03bc8ee1358d855cba918e6f02cd4138ae0c30f9cd")]
15+
[assembly: InternalsVisibleTo("Loggly.Tests.NetStandard,PublicKey=00240000048000009400000006020000002400005253413100040000010001000f6c6697fc064ad5057b7e916981b7b3da94171a80fb14553f9c67eee7f939f30dc9ed6fd555319be7a7c394ea98e22ab5286220bda2be17f71a99a47fdccb14115a13a37c99a8445811155c6e75257f811009944c37c6757e5eb6078e84c1875966ec3d05194778650cad03bc8ee1358d855cba918e6f02cd4138ae0c30f9cd")]
1516

Diff for: source/Loggly.Config/Loggly.Config.csproj

+110-101
Original file line numberDiff line numberDiff line change
@@ -1,108 +1,117 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<PropertyGroup>
4-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6-
<ProductVersion>10.0.20723</ProductVersion>
7-
<SchemaVersion>2.0</SchemaVersion>
8-
<ProjectGuid>{58A100CE-CC7E-43BF-A054-D28648F092AC}</ProjectGuid>
9-
<OutputType>Library</OutputType>
10-
<AppDesignerFolder>Properties</AppDesignerFolder>
11-
<RootNamespace>Loggly.Config</RootNamespace>
12-
<AssemblyName>Loggly.Config</AssemblyName>
13-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
14-
<FileAlignment>512</FileAlignment>
15-
<TargetFrameworkProfile />
16-
</PropertyGroup>
17-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18-
<DebugSymbols>true</DebugSymbols>
19-
<DebugType>full</DebugType>
20-
<Optimize>false</Optimize>
21-
<OutputPath>bin\Debug\</OutputPath>
22-
<DefineConstants>TRACE;DEBUG;FEATURE_SYSTEM_CONFIGURATION FEATURE_SYSTEM_ENVIRONMENT_OSVERSION</DefineConstants>
23-
<ErrorReport>prompt</ErrorReport>
24-
<WarningLevel>4</WarningLevel>
25-
<Prefer32Bit>false</Prefer32Bit>
26-
</PropertyGroup>
27-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28-
<DebugType>pdbonly</DebugType>
29-
<Optimize>true</Optimize>
30-
<OutputPath>bin\Release\</OutputPath>
31-
<DefineConstants>TRACE;FEATURE_SYSTEM_CONFIGURATION FEATURE_SYSTEM_ENVIRONMENT_OSVERSION</DefineConstants>
32-
<ErrorReport>prompt</ErrorReport>
33-
<WarningLevel>4</WarningLevel>
34-
<Prefer32Bit>false</Prefer32Bit>
35-
</PropertyGroup>
36-
<ItemGroup>
37-
<Reference Include="System" />
38-
<Reference Include="System.Configuration" />
39-
<Reference Include="System.Data" />
40-
<Reference Include="System.Xml" />
41-
</ItemGroup>
42-
<ItemGroup>
43-
<Compile Include="..\..\SolutionItems\Properties\AssemblyInfo.cs">
44-
<Link>Properties\AssemblyInfo.cs</Link>
45-
</Compile>
46-
<Compile Include="AppConfigPartials\TransportAppConfig.cs" />
47-
<Compile Include="ExtensionMethods\TagExtensions.cs" />
48-
<Compile Include="ExtensionMethods\TransportAppConfig.cs" />
49-
<Compile Include="AppConfigPartials\TagAppConfig.cs" />
50-
<Compile Include="ApplicationNameProvider.cs" />
51-
<Compile Include="Tags\ITag.cs" />
52-
<Compile Include="SearchConfiguration.cs" />
53-
<Compile Include="Tags\SimpleTag.cs" />
54-
<Compile Include="Tags\ComplexTags\ApplicationNameTag.cs" />
55-
<Compile Include="Tags\ComplexTags\ComplexTag.cs" />
56-
<Compile Include="Tags\ComplexTags\OperatingSystemPlatformTag.cs" />
57-
<Compile Include="Tags\ComplexTags\OperatingSystemVersionTag.cs" />
58-
<Compile Include="ConfigurationSection.csd.cs">
59-
<DependentUpon>ConfigurationSection.csd.xsd</DependentUpon>
60-
</Compile>
61-
<Compile Include="ConfigurationSection1.csd.cs">
62-
<AutoGen>True</AutoGen>
63-
<DesignTime>True</DesignTime>
64-
<DependentUpon>ConfigurationSection.csd</DependentUpon>
65-
</Compile>
66-
<Compile Include="Tags\ComplexTags\HostnameTag.cs" />
67-
<Compile Include="ILogglyConfig.cs" />
68-
<Compile Include="LogglyConfig.cs" />
69-
<Compile Include="AppConfigPartials\LogglyConfig.cs" />
70-
<Compile Include="AppConfigPartials\SearchAppConfig.cs" />
71-
<Compile Include="AppConfigPartials\SimpleTagAppConfig.cs" />
72-
<Compile Include="Properties\AssemblyInfoUnique.cs" />
73-
<Compile Include="TagConfiguration.cs" />
74-
<Compile Include="TransportConfiguration.cs" />
75-
</ItemGroup>
76-
<ItemGroup>
77-
<None Include="ConfigurationSection.csd">
78-
<Generator>CsdFileGenerator</Generator>
79-
<LastGenOutput>ConfigurationSection1.csd.cs</LastGenOutput>
80-
<SubType>Designer</SubType>
81-
</None>
82-
<None Include="ConfigurationSection.csd.config">
83-
<DependentUpon>ConfigurationSection.csd</DependentUpon>
84-
<SubType>Designer</SubType>
85-
</None>
86-
<None Include="ConfigurationSection.csd.diagram">
87-
<DependentUpon>ConfigurationSection.csd</DependentUpon>
88-
<SubType>Designer</SubType>
89-
</None>
90-
<None Include="ConfigurationSection.csd.xsd">
91-
<DependentUpon>ConfigurationSection.csd</DependentUpon>
92-
<SubType>Designer</SubType>
93-
</None>
94-
<None Include="Loggly.Config.nuspec" />
95-
</ItemGroup>
96-
<ItemGroup>
97-
<Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
98-
<Service Include="{B4F97281-0DBD-4835-9ED8-7DFB966E87FF}" />
99-
</ItemGroup>
100-
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6+
<ProductVersion>10.0.20723</ProductVersion>
7+
<SchemaVersion>2.0</SchemaVersion>
8+
<ProjectGuid>{58A100CE-CC7E-43BF-A054-D28648F092AC}</ProjectGuid>
9+
<OutputType>Library</OutputType>
10+
<AppDesignerFolder>Properties</AppDesignerFolder>
11+
<RootNamespace>Loggly.Config</RootNamespace>
12+
<AssemblyName>Loggly.Config</AssemblyName>
13+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
14+
<FileAlignment>512</FileAlignment>
15+
<TargetFrameworkProfile />
16+
</PropertyGroup>
17+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18+
<DebugSymbols>true</DebugSymbols>
19+
<DebugType>full</DebugType>
20+
<Optimize>false</Optimize>
21+
<OutputPath>bin\Debug\</OutputPath>
22+
<DefineConstants>TRACE;DEBUG;FEATURE_SYSTEM_CONFIGURATION FEATURE_SYSTEM_ENVIRONMENT_OSVERSION</DefineConstants>
23+
<ErrorReport>prompt</ErrorReport>
24+
<WarningLevel>4</WarningLevel>
25+
<Prefer32Bit>false</Prefer32Bit>
26+
</PropertyGroup>
27+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28+
<DebugType>pdbonly</DebugType>
29+
<Optimize>true</Optimize>
30+
<OutputPath>bin\Release\</OutputPath>
31+
<DefineConstants>TRACE;FEATURE_SYSTEM_CONFIGURATION FEATURE_SYSTEM_ENVIRONMENT_OSVERSION</DefineConstants>
32+
<ErrorReport>prompt</ErrorReport>
33+
<WarningLevel>4</WarningLevel>
34+
<Prefer32Bit>false</Prefer32Bit>
35+
</PropertyGroup>
36+
<PropertyGroup>
37+
<SignAssembly>true</SignAssembly>
38+
</PropertyGroup>
39+
<PropertyGroup>
40+
<AssemblyOriginatorKeyFile>..\..\LogglyCsharp.snk</AssemblyOriginatorKeyFile>
41+
</PropertyGroup>
42+
<ItemGroup>
43+
<Reference Include="System" />
44+
<Reference Include="System.Configuration" />
45+
<Reference Include="System.Data" />
46+
<Reference Include="System.Xml" />
47+
</ItemGroup>
48+
<ItemGroup>
49+
<Compile Include="..\..\SolutionItems\Properties\AssemblyInfo.cs">
50+
<Link>Properties\AssemblyInfo.cs</Link>
51+
</Compile>
52+
<Compile Include="AppConfigPartials\TransportAppConfig.cs" />
53+
<Compile Include="ExtensionMethods\TagExtensions.cs" />
54+
<Compile Include="ExtensionMethods\TransportAppConfig.cs" />
55+
<Compile Include="AppConfigPartials\TagAppConfig.cs" />
56+
<Compile Include="ApplicationNameProvider.cs" />
57+
<Compile Include="Tags\ITag.cs" />
58+
<Compile Include="SearchConfiguration.cs" />
59+
<Compile Include="Tags\SimpleTag.cs" />
60+
<Compile Include="Tags\ComplexTags\ApplicationNameTag.cs" />
61+
<Compile Include="Tags\ComplexTags\ComplexTag.cs" />
62+
<Compile Include="Tags\ComplexTags\OperatingSystemPlatformTag.cs" />
63+
<Compile Include="Tags\ComplexTags\OperatingSystemVersionTag.cs" />
64+
<Compile Include="ConfigurationSection.csd.cs">
65+
<DependentUpon>ConfigurationSection.csd.xsd</DependentUpon>
66+
</Compile>
67+
<Compile Include="ConfigurationSection1.csd.cs">
68+
<AutoGen>True</AutoGen>
69+
<DesignTime>True</DesignTime>
70+
<DependentUpon>ConfigurationSection.csd</DependentUpon>
71+
</Compile>
72+
<Compile Include="Tags\ComplexTags\HostnameTag.cs" />
73+
<Compile Include="ILogglyConfig.cs" />
74+
<Compile Include="LogglyConfig.cs" />
75+
<Compile Include="AppConfigPartials\LogglyConfig.cs" />
76+
<Compile Include="AppConfigPartials\SearchAppConfig.cs" />
77+
<Compile Include="AppConfigPartials\SimpleTagAppConfig.cs" />
78+
<Compile Include="Properties\AssemblyInfoUnique.cs" />
79+
<Compile Include="TagConfiguration.cs" />
80+
<Compile Include="TransportConfiguration.cs" />
81+
</ItemGroup>
82+
<ItemGroup>
83+
<None Include="..\..\LogglyCsharp.snk">
84+
<Link>LogglyCsharp.snk</Link>
85+
</None>
86+
<None Include="ConfigurationSection.csd">
87+
<Generator>CsdFileGenerator</Generator>
88+
<LastGenOutput>ConfigurationSection1.csd.cs</LastGenOutput>
89+
<SubType>Designer</SubType>
90+
</None>
91+
<None Include="ConfigurationSection.csd.config">
92+
<DependentUpon>ConfigurationSection.csd</DependentUpon>
93+
<SubType>Designer</SubType>
94+
</None>
95+
<None Include="ConfigurationSection.csd.diagram">
96+
<DependentUpon>ConfigurationSection.csd</DependentUpon>
97+
<SubType>Designer</SubType>
98+
</None>
99+
<None Include="ConfigurationSection.csd.xsd">
100+
<DependentUpon>ConfigurationSection.csd</DependentUpon>
101+
<SubType>Designer</SubType>
102+
</None>
103+
<None Include="Loggly.Config.nuspec" />
104+
</ItemGroup>
105+
<ItemGroup>
106+
<Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
107+
<Service Include="{B4F97281-0DBD-4835-9ED8-7DFB966E87FF}" />
108+
</ItemGroup>
109+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
101110
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
102111
Other similar extension points exist, see Microsoft.Common.targets.
103112
<Target Name="BeforeBuild">
104113
</Target>
105114
<Target Name="AfterBuild">
106115
</Target>
107-
-->
116+
-->
108117
</Project>
+1-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
using System;
2-
using System.Reflection;
3-
using System.Runtime.InteropServices;
4-
using System.Security;
1+
using System.Reflection;
52

63
[assembly: AssemblyTitle("Loggly.Config")]
74
[assembly: AssemblyDescription("Configuration classes for loggly clients. Settings are read from app.config or can be programmatically injected at runtime. See readme.md for documentation")]

0 commit comments

Comments
 (0)