Skip to content

Commit 6d08285

Browse files
AgentReviewTool
1 parent e46c36e commit 6d08285

File tree

98 files changed

+5611
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+5611
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# msbuild output directories
4+
/bin
5+
/obj
6+
7+
# MSBuild Binary and Structured Log
8+
*.binlog
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<PowerAppsTargetsPath>$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v$(VisualStudioVersion)\PowerApps</PowerAppsTargetsPath>
5+
</PropertyGroup>
6+
7+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" />
8+
<Import Project="$(PowerAppsTargetsPath)\Microsoft.PowerApps.VisualStudio.Solution.props" Condition="Exists('$(PowerAppsTargetsPath)\Microsoft.PowerApps.VisualStudio.Solution.props')" />
9+
10+
<PropertyGroup>
11+
<ProjectGuid>21f377c1-2053-4ec7-aadf-9612d3198676</ProjectGuid>
12+
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
13+
<!--Remove TargetFramework when this is available in 16.1-->
14+
<TargetFramework>net462</TargetFramework>
15+
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
16+
<SolutionRootPath>src</SolutionRootPath>
17+
</PropertyGroup>
18+
19+
<!--
20+
Solution Packager overrides, un-comment to use: SolutionPackagerType (Managed, Unmanaged, Both)
21+
Solution Localization Control, if you want to enabled localization of your solution, un-comment SolutionPackageEnableLocalization and set the value to true. - Requires use of -loc flag on Solution Clone or Sync
22+
-->
23+
<!--
24+
<PropertyGroup>
25+
<SolutionPackageType>Managed</SolutionPackageType>
26+
<SolutionPackageEnableLocalization>false</SolutionPackageEnableLocalization>
27+
</PropertyGroup>
28+
-->
29+
30+
<ItemGroup>
31+
<PackageReference Include="Microsoft.PowerApps.MSBuild.Solution" Version="1.*" />
32+
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0" PrivateAssets="All" />
33+
</ItemGroup>
34+
35+
<ItemGroup>
36+
<ExcludeDirectories Include="$(MSBuildThisFileDirectory)\.gitignore" />
37+
<ExcludeDirectories Include="$(MSBuildThisFileDirectory)\bin\**" />
38+
<ExcludeDirectories Include="$(MSBuildThisFileDirectory)\obj\**" />
39+
<ExcludeDirectories Include="$(MSBuildThisFileDirectory)\*.cdsproj" />
40+
<ExcludeDirectories Include="$(MSBuildThisFileDirectory)\*.cdsproj.user" />
41+
<ExcludeDirectories Include="$(MSBuildThisFileDirectory)\*.sln" />
42+
</ItemGroup>
43+
44+
<ItemGroup>
45+
<None Include="$(MSBuildThisFileDirectory)\**" Exclude="@(ExcludeDirectories)" />
46+
<Content Include="$(SolutionPackageZipFilePath)">
47+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
48+
</Content>
49+
</ItemGroup>
50+
51+
<Import Project="$(MSBuildToolsPath)\Microsoft.Common.targets" />
52+
<Import Project="$(PowerAppsTargetsPath)\Microsoft.PowerApps.VisualStudio.Solution.targets" Condition="Exists('$(PowerAppsTargetsPath)\Microsoft.PowerApps.VisualStudio.Solution.targets')" />
53+
54+
</Project>
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<botcomponent_aipluginoperationset>
2+
<botcomponent_aipluginoperation aipluginoperationid.aiplugin.name="msdynaip_StageAFetchCopilotComponentDetails_1760803431462" aipluginoperationid.operationid="msdynaip_StageAFetchCopilotComponentDetails_1760803431462" botcomponentid.schemaname="cr306_agentReviewer.action.StageA-FetchCopilotComponentDetails">
3+
<iscustomizable>1</iscustomizable>
4+
</botcomponent_aipluginoperation>
5+
<botcomponent_aipluginoperation aipluginoperationid.aiplugin.name="msdynaip_StageBCopilotPatternEvaluationPrompt_1760861060595" aipluginoperationid.operationid="msdynaip_StageBCopilotPatternEvaluationPrompt_1760861060595" botcomponentid.schemaname="cr306_agentReviewer.action.StageB-CopilotPatternEvaluation">
6+
<iscustomizable>1</iscustomizable>
7+
</botcomponent_aipluginoperation>
8+
<botcomponent_aipluginoperation aipluginoperationid.aiplugin.name="msdynaip_StageCAgentReviewReportGeneration_1760882637666" aipluginoperationid.operationid="msdynaip_StageCAgentReviewReportGeneration_1760882637666" botcomponentid.schemaname="cr306_agentReviewer.action.StageC-AgentReviewReportGeneration">
9+
<iscustomizable>1</iscustomizable>
10+
</botcomponent_aipluginoperation>
11+
</botcomponent_aipluginoperationset>
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<botcomponent_connectionreferenceset>
2+
<botcomponent_connectionreference botcomponentid.schemaname="cr306_agentReviewer.topic.AgentReview" connectionreferenceid.connectionreferencelogicalname="cat_AgentReviewToolDataverseConnectionRef">
3+
<iscustomizable>1</iscustomizable>
4+
</botcomponent_connectionreference>
5+
</botcomponent_connectionreferenceset>
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<botcomponent_workflowset>
2+
<botcomponent_workflow botcomponentid.schemaname="cr306_agentReviewer.action.AgentReviewer" workflowid.workflowid="3b131928-8094-f011-b41c-6045bdef4136">
3+
<iscustomizable>1</iscustomizable>
4+
</botcomponent_workflow>
5+
</botcomponent_workflowset>

0 commit comments

Comments
 (0)