Skip to content

Commit

Permalink
Merge pull request #73 from microsoft/benwatson
Browse files Browse the repository at this point in the history
Revamp build system
  • Loading branch information
doubleyewdee authored Oct 10, 2019
2 parents 5205a0d + 2cabf02 commit ca06b11
Show file tree
Hide file tree
Showing 14 changed files with 19 additions and 307 deletions.
Binary file removed .build/CBT/CBT.Core.dll
Binary file not shown.
122 changes: 0 additions & 122 deletions .build/CBT/build.props

This file was deleted.

90 changes: 0 additions & 90 deletions .build/Local/CBTModules/packages.config

This file was deleted.

7 changes: 0 additions & 7 deletions .build/Local/Extensions/before.build.props

This file was deleted.

12 changes: 0 additions & 12 deletions .build/Local/Extensions/build.props

This file was deleted.

Binary file removed .build/Local/NuGet/CredentialProvider.VSS.exe
Binary file not shown.
Binary file removed .build/Local/NuGet/nuget.exe
Binary file not shown.
35 changes: 0 additions & 35 deletions Directory.Build.props

This file was deleted.

Binary file added MSFT.snk
Binary file not shown.
19 changes: 0 additions & 19 deletions Microsoft.IO.RecyclableMemoryStream.nuspec

This file was deleted.

5 changes: 0 additions & 5 deletions NuGet.config
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,6 @@
</activePackageSource>
<packageSources>
<clear />
<add
key="CBT"
value="https://www.myget.org/F/cbt/api/v3/index.json"
/>

<add
key="OSS_All"
value="https://api.nuget.org/v3/index.json"
Expand Down
13 changes: 0 additions & 13 deletions dirs.proj

This file was deleted.

19 changes: 17 additions & 2 deletions src/Microsoft.IO.RecyclableMemoryStream.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,26 @@
<PropertyGroup>
<TargetFrameworks>netstandard1.4;netstandard2.1;net40;net45;net46;netcoreapp2.1</TargetFrameworks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<!-- NuGet properties -->
<PackageId>Microsoft.IO.RecyclableMemoryStream</PackageId>
<PackageVersion>1.3.0</PackageVersion>
<Title>Microsoft.IO.RecyclableMemoryStream</Title>
<Authors>Ben Watson; Chip Locke</Authors>
<Description>Pooled memory allocator.</Description>
<Copyright>Copyright 2015-2019 Microsoft</Copyright>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReleaseNotes>Additional framework targets, better .Net Core support, simplified build.</PackageReleaseNotes>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageTags>MemoryStream;Memory;performance;GC</PackageTags>
<RepositoryUrl>https://github.com/Microsoft/Microsoft.IO.RecyclableMemoryStream</RepositoryUrl>
<IncludeBuildOutput>true</IncludeBuildOutput>
</PropertyGroup>
<!-- for assembly signing we use a magic variable coupled with a special build definition which skips UTs -->
<PropertyGroup Condition="'$(DelaySignKeyFile)' != ''">
<PropertyGroup Condition="'$(SignedBuild)' == 'true'">
<DefineConstants>$(DefineConstants);NOFRIENDASSEMBLY</DefineConstants>
<AssemblyOriginatorKeyFile>$(DelaySignKeyFile)</AssemblyOriginatorKeyFile>
<AssemblyOriginatorKeyFile>..\MSFT.snk</AssemblyOriginatorKeyFile>
<DelaySign>true</DelaySign>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
Expand Down
Loading

0 comments on commit ca06b11

Please sign in to comment.