Skip to content

Commit 188493b

Browse files
committed
Updating version
1 parent 7a99a90 commit 188493b

File tree

3 files changed

+48
-2
lines changed

3 files changed

+48
-2
lines changed

package.sln

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.27004.2002
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Unity.Interception", "src\Unity.Interception.csproj", "{B73259E0-77F8-41FD-9A7A-CAB8AC231086}"
7+
EndProject
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Interception.Tests", "tests\Interception.Tests.csproj", "{83D32085-6A48-4EDE-B1CD-1B6D00BE10C9}"
9+
EndProject
10+
Global
11+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
12+
Debug|Any CPU = Debug|Any CPU
13+
Package|Any CPU = Package|Any CPU
14+
Release|Any CPU = Release|Any CPU
15+
EndGlobalSection
16+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
17+
{B73259E0-77F8-41FD-9A7A-CAB8AC231086}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
18+
{B73259E0-77F8-41FD-9A7A-CAB8AC231086}.Debug|Any CPU.Build.0 = Debug|Any CPU
19+
{B73259E0-77F8-41FD-9A7A-CAB8AC231086}.Package|Any CPU.ActiveCfg = Package|Any CPU
20+
{B73259E0-77F8-41FD-9A7A-CAB8AC231086}.Package|Any CPU.Build.0 = Package|Any CPU
21+
{B73259E0-77F8-41FD-9A7A-CAB8AC231086}.Release|Any CPU.ActiveCfg = Release|Any CPU
22+
{B73259E0-77F8-41FD-9A7A-CAB8AC231086}.Release|Any CPU.Build.0 = Release|Any CPU
23+
{83D32085-6A48-4EDE-B1CD-1B6D00BE10C9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
24+
{83D32085-6A48-4EDE-B1CD-1B6D00BE10C9}.Debug|Any CPU.Build.0 = Debug|Any CPU
25+
{83D32085-6A48-4EDE-B1CD-1B6D00BE10C9}.Package|Any CPU.ActiveCfg = Debug|Any CPU
26+
{83D32085-6A48-4EDE-B1CD-1B6D00BE10C9}.Package|Any CPU.Build.0 = Debug|Any CPU
27+
{83D32085-6A48-4EDE-B1CD-1B6D00BE10C9}.Release|Any CPU.ActiveCfg = Release|Any CPU
28+
{83D32085-6A48-4EDE-B1CD-1B6D00BE10C9}.Release|Any CPU.Build.0 = Release|Any CPU
29+
EndGlobalSection
30+
GlobalSection(SolutionProperties) = preSolution
31+
HideSolutionNode = FALSE
32+
EndGlobalSection
33+
GlobalSection(ExtensibilityGlobals) = postSolution
34+
SolutionGuid = {7D864CD1-AEA6-4EDF-B8F8-071CE7F88251}
35+
EndGlobalSection
36+
EndGlobal

src/Unity.Interception.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<Description>Unity Interception</Description>
5-
<Version>5.0.0-beta</Version>
5+
<Version>5.0.0-RC1</Version>
66
<AssemblyVersion>5.0.0.0</AssemblyVersion>
77
<FileVersion>5.0.0.0</FileVersion>
88
<Copyright>Copyright © Microsoft 2008</Copyright>

tests/Interception.Tests.csproj

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,18 @@
1313
</ItemGroup>
1414

1515
<ItemGroup>
16-
<ProjectReference Include="..\..\Container\src\Unity.Container.csproj" />
1716
<ProjectReference Include="..\src\Unity.Interception.csproj" />
1817
</ItemGroup>
1918

19+
20+
<ItemGroup Condition=" '$(Configuration)' != 'Release' ">
21+
<ProjectReference Include="..\..\Abstractions\src\Unity.Abstractions.csproj" />
22+
<ProjectReference Include="..\..\Container\src\Unity.Container.csproj" />
23+
</ItemGroup>
24+
25+
<ItemGroup Condition=" '$(Configuration)' == 'Release' ">
26+
<PackageReference Include="Unity.Abstractions" Version="2.0.0-RC3" />
27+
<PackageReference Include="Unity.Container" Version="5.0.0-RC3" />
28+
</ItemGroup>
29+
2030
</Project>

0 commit comments

Comments
 (0)