Skip to content

Commit

Permalink
add gitlink, bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
saucecontrol committed Jan 17, 2018
1 parent 07d0cc4 commit b1d2701
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 4 deletions.
35 changes: 33 additions & 2 deletions src/MagicScaler/MagicScaler.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">1.0.4</RuntimeFrameworkVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>latest</LangVersion>
<VersionPrefix>0.8.3</VersionPrefix>
<VersionPrefix>0.8.4</VersionPrefix>
<Authors>Clinton Ingram</Authors>
<Company>PhotoSauce</Company>
<Product>MagicScaler</Product>
Expand All @@ -28,13 +28,16 @@
<DefineConstants Condition=" '$(TargetFramework)' == 'netcoreapp2.0' ">$(DefineConstants);MATHF</DefineConstants>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<DebugSymbols>True</DebugSymbols>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.4.0" />
<PackageReference Include="GitLink" Version="3.1.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp1.0' Or '$(TargetFramework)' == 'netstandard1.3' ">
Expand All @@ -54,4 +57,32 @@
<Reference Include="System.Drawing" />
</ItemGroup>

<ItemGroup>
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
</ItemGroup>

<ItemGroup>
<None Update="Magic\Generated\Convolver.tt">
<Generator>TextTemplatingFileGenerator</Generator>
<LastGenOutput>Convolver.cs</LastGenOutput>
</None>
<None Update="Magic\Generated\VectorConvolver.tt">
<Generator>TextTemplatingFileGenerator</Generator>
<LastGenOutput>VectorConvolver.cs</LastGenOutput>
</None>
</ItemGroup>

<ItemGroup>
<Compile Update="Magic\Generated\Convolver.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Convolver.tt</DependentUpon>
</Compile>
<Compile Update="Magic\Generated\VectorConvolver.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>VectorConvolver.tt</DependentUpon>
</Compile>
</ItemGroup>

</Project>
10 changes: 8 additions & 2 deletions src/WebRSize/WebRSize.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<AssemblyTitle>WebRSize</AssemblyTitle>
<TargetFramework>net46</TargetFramework>
<LangVersion>latest</LangVersion>
<VersionPrefix>0.3.1</VersionPrefix>
<VersionPrefix>0.3.2</VersionPrefix>
<Authors>Clinton Ingram</Authors>
<Description>Web extensions for the MagicScaler library, inlcluding an HTTP request intercept module for automatic image processing.</Description>
<Company>PhotoSauce</Company>
Expand All @@ -21,11 +21,17 @@
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<DebugSymbols>True</DebugSymbols>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="GitLink" Version="3.1.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net46' ">
<Reference Include="System.Configuration" />
<Reference Include="System.Web" />
Expand Down

0 comments on commit b1d2701

Please sign in to comment.