Skip to content
This repository has been archived by the owner on Oct 18, 2018. It is now read-only.

Commit

Permalink
Update to MSBuild
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavkm committed Mar 7, 2017
1 parent c598f19 commit a39f81d
Show file tree
Hide file tree
Showing 31 changed files with 1,252 additions and 1,708 deletions.
55 changes: 3 additions & 52 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,56 +14,7 @@ artifacts
StyleCop.Cache
node_modules
*.snk
.nuget/NuGet.exe
project.lock.json
.build
.nuget/

# repo folders
/Antiforgery/
/AzureIntegration/
/BasicMiddleware/
/BrowserLink/
/CORS/
/Caching/
/Common/
/Configuration/
/DataProtection/
/DependencyInjection/
/Diagnostics/
/DotNetTools/
/EntityFramework.Tools/
/EntityFramework/
/Entropy/
/EventNotification/
/FileSystem/
/Hosting/
/HtmlAbstractions/
/HttpAbstractions/
/HttpSysServer/
/IISIntegration/
/Identity/
/IdentityService/
/JsonPatch/
/KestrelHttpServer/
/Localization/
/Logging/
/MetaPackages/
/Microsoft.Data.Sqlite/
/MusicStore/
/Mvc/
/MvcPrecompilation/
/Options/
/PlatformAbstractions/
/Proxy/
/Razor/
/ResponseCaching/
/Routing/
/Scaffolding/
/Security/
/ServerTests/
/Session/
/SignalR/
/StaticFiles/
/Testing/
/WebSockets/
.nuget
.r
.deps
40 changes: 40 additions & 0 deletions Universe.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26228.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BuildGraph", "tools\BuildGraph\BuildGraph.csproj", "{B0621D49-4770-4552-9425-D6BD2CF0FB50}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AddCommitInfo", "tools\AddCommitInfo\AddCommitInfo.csproj", "{0DC180DF-D87B-448A-BCDE-2A648F41103E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PinVersions", "tools\PinVersions\PinVersions.csproj", "{DACA9DFB-508E-45EA-A5CF-C0F5C2BA181B}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "shared", "shared", "{085280EC-7055-426A-BF9C-1B692B9599AB}"
ProjectSection(SolutionItems) = preProject
tools\shared\DependencyGraphSpecProvider.cs = tools\shared\DependencyGraphSpecProvider.cs
tools\shared\DotNetMuxer.cs = tools\shared\DotNetMuxer.cs
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{B0621D49-4770-4552-9425-D6BD2CF0FB50}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B0621D49-4770-4552-9425-D6BD2CF0FB50}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B0621D49-4770-4552-9425-D6BD2CF0FB50}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B0621D49-4770-4552-9425-D6BD2CF0FB50}.Release|Any CPU.Build.0 = Release|Any CPU
{0DC180DF-D87B-448A-BCDE-2A648F41103E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0DC180DF-D87B-448A-BCDE-2A648F41103E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0DC180DF-D87B-448A-BCDE-2A648F41103E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0DC180DF-D87B-448A-BCDE-2A648F41103E}.Release|Any CPU.Build.0 = Release|Any CPU
{DACA9DFB-508E-45EA-A5CF-C0F5C2BA181B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DACA9DFB-508E-45EA-A5CF-C0F5C2BA181B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DACA9DFB-508E-45EA-A5CF-C0F5C2BA181B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DACA9DFB-508E-45EA-A5CF-C0F5C2BA181B}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
243 changes: 0 additions & 243 deletions _use-release-management.shade

This file was deleted.

8 changes: 0 additions & 8 deletions build-template/NuGet.master.config

This file was deleted.

9 changes: 9 additions & 0 deletions build/PublishPackages.targets
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<Project>
<Target Name="PublishPackages">
<ItemGroup>
<PackagesToPush Include="$(PackagesDirectory)*.nupkg" />
</ItemGroup>

<Exec Command="$(DotNetPath) nuget push &quot;%(PackagesToPush.Identity)&quot; -s $(NuGetFeed) -k $(APIKEY)" />
</Target>
</Project>
Loading

0 comments on commit a39f81d

Please sign in to comment.