Skip to content

Commit

Permalink
Separate the samples to VA and Skill instead of having them in one so…
Browse files Browse the repository at this point in the history
…lution (microsoft#2923)

* separate skill sample out of the VA sample solution

* remove useless folder
  • Loading branch information
lzc850612 authored Jan 27, 2020
1 parent 9f6236b commit b064789
Show file tree
Hide file tree
Showing 77 changed files with 63 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,10 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29424.173
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "VA", "VA", "{BD62412B-FAA5-475A-93F3-4980DB0FED7D}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Skill", "Skill", "{966EB351-B32F-4E0C-ABD8-804D3357FFFE}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VirtualAssistantSample", "VirtualAssistantSample\VirtualAssistantSample.csproj", "{1B88BF44-E6D7-441A-931F-8EC00F6954C8}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VirtualAssistantSample.Tests", "VirtualAssistantSample.Tests\VirtualAssistantSample.Tests.csproj", "{909085AC-BFB6-4A90-B5A5-3D07F7E63900}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SkillSample", "SkillSample\SkillSample.csproj", "{9150CBC6-1F6F-4DC7-BDC4-7603084D8DE5}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SkillSample.Tests", "SkillSample.Tests\SkillSample.Tests.csproj", "{9FDB90E0-D670-4416-B66D-F48F6A26C6D8}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -29,24 +21,10 @@ Global
{909085AC-BFB6-4A90-B5A5-3D07F7E63900}.Debug|Any CPU.Build.0 = Debug|Any CPU
{909085AC-BFB6-4A90-B5A5-3D07F7E63900}.Release|Any CPU.ActiveCfg = Release|Any CPU
{909085AC-BFB6-4A90-B5A5-3D07F7E63900}.Release|Any CPU.Build.0 = Release|Any CPU
{9150CBC6-1F6F-4DC7-BDC4-7603084D8DE5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9150CBC6-1F6F-4DC7-BDC4-7603084D8DE5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9150CBC6-1F6F-4DC7-BDC4-7603084D8DE5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9150CBC6-1F6F-4DC7-BDC4-7603084D8DE5}.Release|Any CPU.Build.0 = Release|Any CPU
{9FDB90E0-D670-4416-B66D-F48F6A26C6D8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9FDB90E0-D670-4416-B66D-F48F6A26C6D8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9FDB90E0-D670-4416-B66D-F48F6A26C6D8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9FDB90E0-D670-4416-B66D-F48F6A26C6D8}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{1B88BF44-E6D7-441A-931F-8EC00F6954C8} = {BD62412B-FAA5-475A-93F3-4980DB0FED7D}
{909085AC-BFB6-4A90-B5A5-3D07F7E63900} = {BD62412B-FAA5-475A-93F3-4980DB0FED7D}
{9150CBC6-1F6F-4DC7-BDC4-7603084D8DE5} = {966EB351-B32F-4E0C-ABD8-804D3357FFFE}
{9FDB90E0-D670-4416-B66D-F48F6A26C6D8} = {966EB351-B32F-4E0C-ABD8-804D3357FFFE}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {03D2E957-9568-4F2E-9176-45179E11B252}
EndGlobalSection
Expand Down
32 changes: 32 additions & 0 deletions samples/csharp/skill/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<Project>
<PropertyGroup>
<CodeAnalysisRuleSet>$(SolutionDir)\VirtualAssistant.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="StyleCop.Analyzers" Version="1.1.0-beta008" PrivateAssets="all" />
</ItemGroup>

<PropertyGroup>
<RestoreAdditionalProjectSources>
https://botbuilder.myget.org/F/aitemplates/api/v3/index.json;
https://botbuilder.myget.org/F/botbuilder-declarative/api/v3/index.json;
https://botbuilder.myget.org/F/botbuilder-v4-dotnet-daily/api/v3/index.json;
</RestoreAdditionalProjectSources>
</PropertyGroup>

<PropertyGroup>
<Company>Microsoft</Company>
<Authors>Microsoft</Authors>
<Product>Microsoft BotFramework Solutions</Product>
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
</PropertyGroup>

<PropertyGroup>
<RepositoryUrl>https://github.com/Microsoft/AI</RepositoryUrl>
<LicenseUrl>https://github.com/Microsoft/AI/blob/master/LICENSE</LicenseUrl>
<RepositoryType />
<NeutralLanguage>en-US</NeutralLanguage>
<NoWarn>$(NoWarn);NU5125;NU1701;8002</NoWarn>
</PropertyGroup>
</Project>
31 changes: 31 additions & 0 deletions samples/csharp/skill/SkillSample.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29424.173
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SkillSample", "SkillSample\SkillSample.csproj", "{2AD96F61-B9BA-4DB5-9BA5-5A11D5C56C12}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SkillSample.Tests", "SkillSample.Tests\SkillSample.Tests.csproj", "{83C5C21E-1F3A-483E-8C4C-1FC61F1AB4E7}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{2AD96F61-B9BA-4DB5-9BA5-5A11D5C56C12}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2AD96F61-B9BA-4DB5-9BA5-5A11D5C56C12}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2AD96F61-B9BA-4DB5-9BA5-5A11D5C56C12}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2AD96F61-B9BA-4DB5-9BA5-5A11D5C56C12}.Release|Any CPU.Build.0 = Release|Any CPU
{83C5C21E-1F3A-483E-8C4C-1FC61F1AB4E7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{83C5C21E-1F3A-483E-8C4C-1FC61F1AB4E7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{83C5C21E-1F3A-483E-8C4C-1FC61F1AB4E7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{83C5C21E-1F3A-483E-8C4C-1FC61F1AB4E7}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {03D2E957-9568-4F2E-9176-45179E11B252}
EndGlobalSection
EndGlobal
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit b064789

Please sign in to comment.