Skip to content

Commit c62d94b

Browse files
authored
Merge pull request Azure#2609 from brnleehng/feature/psmodelgenerator
Batch PS wrapper model code generator
2 parents 7da7f62 + ef59d8b commit c62d94b

File tree

4 files changed

+617
-0
lines changed

4 files changed

+617
-0
lines changed
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
5+
<DebugSymbols>true</DebugSymbols>
6+
<DebugType>full</DebugType>
7+
<Optimize>false</Optimize>
8+
<OutputPath>bin\Debug\</OutputPath>
9+
<ProjectGuid>{374701E4-539A-459A-9A00-B04E51652997}</ProjectGuid>
10+
<OutputType>Exe</OutputType>
11+
<AppDesignerFolder>Properties</AppDesignerFolder>
12+
<RootNamespace>BatchModelGenerator</RootNamespace>
13+
<AssemblyName>BatchModelGenerator</AssemblyName>
14+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
15+
<FileAlignment>512</FileAlignment>
16+
<TargetFrameworkProfile />
17+
</PropertyGroup>
18+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
19+
<DebugSymbols>true</DebugSymbols>
20+
<DebugType>full</DebugType>
21+
<Optimize>false</Optimize>
22+
<OutputPath>bin\Debug\</OutputPath>
23+
<ProjectGuid>{374701E4-539A-459A-9A00-B04E51652997}</ProjectGuid>
24+
<OutputType>Exe</OutputType>
25+
<AppDesignerFolder>Properties</AppDesignerFolder>
26+
<RootNamespace>BatchModelGenerator</RootNamespace>
27+
<AssemblyName>BatchModelGenerator</AssemblyName>
28+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
29+
<FileAlignment>512</FileAlignment>
30+
<TargetFrameworkProfile />
31+
</PropertyGroup>
32+
<ItemGroup>
33+
<Reference Include="System" />
34+
<Reference Include="System.Core" />
35+
<Reference Include="System.Xml.Linq" />
36+
<Reference Include="System.Data.DataSetExtensions" />
37+
<Reference Include="Microsoft.CSharp" />
38+
<Reference Include="System.Data" />
39+
<Reference Include="System.Xml" />
40+
</ItemGroup>
41+
<ItemGroup>
42+
<Compile Include="Program.cs" />
43+
</ItemGroup>
44+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
45+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
46+
Other similar extension points exist, see Microsoft.Common.targets.
47+
<Target Name="BeforeBuild">
48+
</Target>
49+
<Target Name="AfterBuild">
50+
</Target>
51+
-->
52+
</Project>
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Microsoft Visual Studio Solution File, Format Version 12.00
2+
# Visual Studio 2013
3+
VisualStudioVersion = 12.0.40629.0
4+
MinimumVisualStudioVersion = 10.0.40219.1
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BatchModelGenerator", "BatchModelGenerator.csproj", "{374701E4-539A-459A-9A00-B04E51652997}"
6+
EndProject
7+
Global
8+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
9+
Debug|Any CPU = Debug|Any CPU
10+
Release|Any CPU = Release|Any CPU
11+
EndGlobalSection
12+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
13+
{374701E4-539A-459A-9A00-B04E51652997}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14+
{374701E4-539A-459A-9A00-B04E51652997}.Debug|Any CPU.Build.0 = Debug|Any CPU
15+
{374701E4-539A-459A-9A00-B04E51652997}.Release|Any CPU.ActiveCfg = Release|Any CPU
16+
{374701E4-539A-459A-9A00-B04E51652997}.Release|Any CPU.Build.0 = Release|Any CPU
17+
EndGlobalSection
18+
GlobalSection(SolutionProperties) = preSolution
19+
HideSolutionNode = FALSE
20+
EndGlobalSection
21+
EndGlobal

0 commit comments

Comments
 (0)