Skip to content

Commit b1d2701

Browse files
committed
add gitlink, bump versions
1 parent 07d0cc4 commit b1d2701

File tree

2 files changed

+41
-4
lines changed

2 files changed

+41
-4
lines changed

src/MagicScaler/MagicScaler.csproj

Lines changed: 33 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">1.0.4</RuntimeFrameworkVersion>
99
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1010
<LangVersion>latest</LangVersion>
11-
<VersionPrefix>0.8.3</VersionPrefix>
11+
<VersionPrefix>0.8.4</VersionPrefix>
1212
<Authors>Clinton Ingram</Authors>
1313
<Company>PhotoSauce</Company>
1414
<Product>MagicScaler</Product>
@@ -28,13 +28,16 @@
2828
<DefineConstants Condition=" '$(TargetFramework)' == 'netcoreapp2.0' ">$(DefineConstants);MATHF</DefineConstants>
2929
</PropertyGroup>
3030

31-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
31+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
3232
<DebugType>pdbonly</DebugType>
3333
<DebugSymbols>True</DebugSymbols>
3434
</PropertyGroup>
3535

3636
<ItemGroup>
3737
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.4.0" />
38+
<PackageReference Include="GitLink" Version="3.1.0">
39+
<PrivateAssets>all</PrivateAssets>
40+
</PackageReference>
3841
</ItemGroup>
3942

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

60+
<ItemGroup>
61+
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
62+
</ItemGroup>
63+
64+
<ItemGroup>
65+
<None Update="Magic\Generated\Convolver.tt">
66+
<Generator>TextTemplatingFileGenerator</Generator>
67+
<LastGenOutput>Convolver.cs</LastGenOutput>
68+
</None>
69+
<None Update="Magic\Generated\VectorConvolver.tt">
70+
<Generator>TextTemplatingFileGenerator</Generator>
71+
<LastGenOutput>VectorConvolver.cs</LastGenOutput>
72+
</None>
73+
</ItemGroup>
74+
75+
<ItemGroup>
76+
<Compile Update="Magic\Generated\Convolver.cs">
77+
<DesignTime>True</DesignTime>
78+
<AutoGen>True</AutoGen>
79+
<DependentUpon>Convolver.tt</DependentUpon>
80+
</Compile>
81+
<Compile Update="Magic\Generated\VectorConvolver.cs">
82+
<DesignTime>True</DesignTime>
83+
<AutoGen>True</AutoGen>
84+
<DependentUpon>VectorConvolver.tt</DependentUpon>
85+
</Compile>
86+
</ItemGroup>
87+
5788
</Project>

src/WebRSize/WebRSize.csproj

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<AssemblyTitle>WebRSize</AssemblyTitle>
77
<TargetFramework>net46</TargetFramework>
88
<LangVersion>latest</LangVersion>
9-
<VersionPrefix>0.3.1</VersionPrefix>
9+
<VersionPrefix>0.3.2</VersionPrefix>
1010
<Authors>Clinton Ingram</Authors>
1111
<Description>Web extensions for the MagicScaler library, inlcluding an HTTP request intercept module for automatic image processing.</Description>
1212
<Company>PhotoSauce</Company>
@@ -21,11 +21,17 @@
2121
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
2222
</PropertyGroup>
2323

24-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
24+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2525
<DebugType>pdbonly</DebugType>
2626
<DebugSymbols>True</DebugSymbols>
2727
</PropertyGroup>
2828

29+
<ItemGroup>
30+
<PackageReference Include="GitLink" Version="3.1.0">
31+
<PrivateAssets>all</PrivateAssets>
32+
</PackageReference>
33+
</ItemGroup>
34+
2935
<ItemGroup Condition=" '$(TargetFramework)' == 'net46' ">
3036
<Reference Include="System.Configuration" />
3137
<Reference Include="System.Web" />

0 commit comments

Comments
 (0)