Skip to content

Commit

Permalink
adding signing key for strong naming and updating assembly properties…
Browse files Browse the repository at this point in the history
… (versioning)
  • Loading branch information
mariodivece committed Dec 4, 2015
1 parent fcadc92 commit 9da5313
Show file tree
Hide file tree
Showing 3 changed files with 83 additions and 76 deletions.
6 changes: 3 additions & 3 deletions Unosquare.Labs.EmbedIO/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Unosquare SA de CV")]
[assembly: AssemblyProduct("Unosquare.Labs.EmbedIO")]
[assembly: AssemblyCopyright("Copyright © 2013")]
[assembly: AssemblyCopyright("Copyright © Unosquare 2013-2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.1.0")]
[assembly: AssemblyFileVersion("1.0.1.0")]
[assembly: AssemblyVersion("1.0.14.*")]
[assembly: AssemblyFileVersion("1.0.14.0")]
153 changes: 80 additions & 73 deletions Unosquare.Labs.EmbedIO/Unosquare.Labs.EmbedIO.csproj
Original file line number Diff line number Diff line change
@@ -1,80 +1,87 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{7D7C29B4-9493-4EBD-8F20-6FAC1E7161EE}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Unosquare.Labs.EmbedIO</RootNamespace>
<AssemblyName>Unosquare.Labs.EmbedIO</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile>
</TargetFrameworkProfile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>TRACE;DEBUG;PATCH_COLLECTIONS</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
<DocumentationFile>bin\Debug\Unosquare.Labs.EmbedIO.XML</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE;PATCH_COLLECTIONS</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
<DocumentationFile>bin\Release\Unosquare.Labs.EmbedIO.XML</DocumentationFile>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.CSharp" />
<Reference Include="Newtonsoft.Json, Version=7.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<Compile Include="Constants.cs" />
<Compile Include="Extensions.cs" />
<Compile Include="FluentExtensions.cs" />
<Compile Include="HttpVerbs.cs" />
<Compile Include="Log\ILog.cs" />
<Compile Include="ISessionWebModule.cs" />
<Compile Include="IWebModule.cs" />
<Compile Include="Log\SimpleConsoleLog.cs" />
<Compile Include="Middleware.cs" />
<Compile Include="Modules\CorsModule.cs" />
<Compile Include="Modules\LocalSessionModule.cs" />
<Compile Include="Modules\StaticFilesModule.cs" />
<Compile Include="Modules\WebApiModule.cs" />
<Compile Include="Modules\WebSocketsModule.cs" />
<Compile Include="Log\NullLog.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="SessionInfo.cs" />
<Compile Include="WebServer.cs" />
<Compile Include="WebModuleBase.cs" />
<Compile Include="ModuleMap.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{7D7C29B4-9493-4EBD-8F20-6FAC1E7161EE}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Unosquare.Labs.EmbedIO</RootNamespace>
<AssemblyName>Unosquare.Labs.EmbedIO</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile>
</TargetFrameworkProfile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>TRACE;DEBUG;PATCH_COLLECTIONS</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
<DocumentationFile>bin\Debug\Unosquare.Labs.EmbedIO.XML</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE;PATCH_COLLECTIONS</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
<DocumentationFile>bin\Release\Unosquare.Labs.EmbedIO.XML</DocumentationFile>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>Unosquare.Labs.EmbedIO.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.CSharp" />
<Reference Include="Newtonsoft.Json, Version=7.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<Compile Include="Constants.cs" />
<Compile Include="Extensions.cs" />
<Compile Include="FluentExtensions.cs" />
<Compile Include="HttpVerbs.cs" />
<Compile Include="Log\ILog.cs" />
<Compile Include="ISessionWebModule.cs" />
<Compile Include="IWebModule.cs" />
<Compile Include="Log\SimpleConsoleLog.cs" />
<Compile Include="Middleware.cs" />
<Compile Include="Modules\CorsModule.cs" />
<Compile Include="Modules\LocalSessionModule.cs" />
<Compile Include="Modules\StaticFilesModule.cs" />
<Compile Include="Modules\WebApiModule.cs" />
<Compile Include="Modules\WebSocketsModule.cs" />
<Compile Include="Log\NullLog.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="SessionInfo.cs" />
<Compile Include="WebServer.cs" />
<Compile Include="WebModuleBase.cs" />
<Compile Include="ModuleMap.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
<None Include="Unosquare.Labs.EmbedIO.snk" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
-->
</Project>
Binary file added Unosquare.Labs.EmbedIO/Unosquare.Labs.EmbedIO.snk
Binary file not shown.

0 comments on commit 9da5313

Please sign in to comment.