Skip to content

Commit

Permalink
Merge pull request dotnet#24 from sepidehMS/XmlWithCli
Browse files Browse the repository at this point in the history
Initial XmlWithCli commit
  • Loading branch information
sepidehkh committed Dec 10, 2015
2 parents 992a2c5 + 3929426 commit 85e7aa6
Show file tree
Hide file tree
Showing 485 changed files with 243,540 additions and 0 deletions.
8 changes: 8 additions & 0 deletions XmlWithCli/NuGet.Config
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<!--To inherit the global NuGet package sources remove the <clear/> line below -->
<clear />
<add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" />
</packageSources>
</configuration>
33 changes: 33 additions & 0 deletions XmlWithCli/XmlWithCli.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.23107.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{BF4B29D3-243E-4B44-A760-C97F0423B26E}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{52E1CBF6-EFDC-4BE1-9080-68273B3FA30F}"
ProjectSection(SolutionItems) = preProject
global.json = global.json
NuGet.Config = NuGet.Config
EndProjectSection
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "XmlWithCli", "src\XmlWithCli\XmlWithCli.xproj", "{53ED918A-492B-41D7-9875-39B6B99D0D6F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{53ED918A-492B-41D7-9875-39B6B99D0D6F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{53ED918A-492B-41D7-9875-39B6B99D0D6F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{53ED918A-492B-41D7-9875-39B6B99D0D6F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{53ED918A-492B-41D7-9875-39B6B99D0D6F}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{53ED918A-492B-41D7-9875-39B6B99D0D6F} = {BF4B29D3-243E-4B44-A760-C97F0423B26E}
EndGlobalSection
EndGlobal
6 changes: 6 additions & 0 deletions XmlWithCli/global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"projects": [ "src", "test" ],
"sdk": {
"version": "1.0.0-beta8"
}
}
24 changes: 24 additions & 0 deletions XmlWithCli/src/XmlWithCli/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("XmlWithCli")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("XmlWithCli")]
[assembly: AssemblyCopyright("Copyright © 2015")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("53ed918a-492b-41d7-9875-39b6b99d0d6f")]
Loading

0 comments on commit 85e7aa6

Please sign in to comment.