diff options
Diffstat (limited to 'nuget')
-rw-r--r-- | nuget/nuget.proj | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/nuget/nuget.proj b/nuget/nuget.proj index 4d79d1f..9c26760 100644 --- a/nuget/nuget.proj +++ b/nuget/nuget.proj @@ -68,20 +68,16 @@ <Target Name="Build" DependsOnTargets="BuildIntermediates" Returns="@(NuGetPackages)"> <ItemGroup> <NuGetProperties Include="version=$(NuGetPackageVersion)" /> - <NuGetProperties Include="oauth2version=$(OAuth2PackagesVersion)" /> + <NuGetProperties Include="oauth2version=$(NuGetPackageVersion)" /> <NuGetProperties Include="OutputPath35=$(OutputPath35)" /> <NuGetProperties Include="OutputPath40=$(OutputPath40)" /> <NuGetProperties Include="OutputPath45=$(OutputPath45)" /> <NuGetProperties Include="IntermediatePath=$(IntermediatePath40)" /> - <NuGetSpecifications Include="*.nuspec" Exclude="*oauth2*.nuspec;DotNetOpenAuth.nuspec"> + <NuGetSpecifications Include="*.nuspec" Exclude="DotNetOpenAuth.nuspec"> <Symbols>true</Symbols> <PackageVersion>$(NuGetPackageVersion)</PackageVersion> </NuGetSpecifications> - <NuGetSpecifications Include="*oauth2*.nuspec" Exclude="DotNetOpenAuth.nuspec"> - <Symbols>true</Symbols> - <PackageVersion>$(OAuth2PackagesVersion)</PackageVersion> - </NuGetSpecifications> <NuGetSpecifications Include="DotNetOpenAuth.nuspec"> <PackageVersion>$(NuGetPackageVersion)</PackageVersion> </NuGetSpecifications> |