Skip to content
1 change: 1 addition & 0 deletions src/CopilotStudio.Sync/CopilotStudio.Sync.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<DelaySign>True</DelaySign>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

<SignAssembly>True</SignAssembly>
<DelaySign>True</DelaySign>
<IsPackable>true</IsPackable>

<!-- NuGet -->
<PackageId>Microsoft.CommonLanguageServerProtocol.Framework</PackageId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<Nullable>enable</Nullable>
<SignAssembly>True</SignAssembly>
<DelaySign>True</DelaySign>
<IsPackable>true</IsPackable>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<Nullable>enable</Nullable>
<SignAssembly>True</SignAssembly>
<DelaySign>True</DelaySign>
<IsPackable>true</IsPackable>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<Nullable>enable</Nullable>
<SignAssembly>True</SignAssembly>
<DelaySign>True</DelaySign>
<IsPackable>true</IsPackable>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<Nullable>enable</Nullable>
<SignAssembly>True</SignAssembly>
<DelaySign>True</DelaySign>
<IsPackable>true</IsPackable>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<Nullable>enable</Nullable>
<SignAssembly>True</SignAssembly>
<DelaySign>True</DelaySign>
<IsPackable>true</IsPackable>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<RootNamespace>$(AssemblyName)</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<Nullable>enable</Nullable>
<SignAssembly>True</SignAssembly>
<DelaySign>True</DelaySign>
<IsPackable>true</IsPackable>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<DelaySign>True</DelaySign>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<RootNamespace>Microsoft.PowerPlatformLS.Impl.YamlSourceTree</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
</PropertyGroup>

<ItemGroup>
Expand Down
15 changes: 15 additions & 0 deletions src/build.proj
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,19 @@
<ProjectReference Include="CopilotStudio.Sync.E2ETests\CopilotStudio.Sync.E2ETests.csproj" />
<ProjectReference Include="CopilotStudio.Sync.TestHarness\CopilotStudio.Sync.TestHarness.csproj" />
</ItemGroup>

<!-- Library projects for dotnet pack -->
<ItemGroup>
<ProjectReference Include="CopilotStudio.Sync\CopilotStudio.Sync.csproj" />
<ProjectReference Include="LanguageServers\CLaSP\Microsoft.CommonLanguageServerProtocol.Framework.csproj" />
<ProjectReference Include="LanguageServers\PowerPlatformLS\Contracts.FileLayout\Contracts.FileLayout.csproj" />
<ProjectReference Include="LanguageServers\PowerPlatformLS\Contracts.Internal\Contracts.Internal.csproj" />
<ProjectReference Include="LanguageServers\PowerPlatformLS\Contracts.LSP\Contracts.LSP.csproj" />
<ProjectReference Include="LanguageServers\PowerPlatformLS\Impl.Core\Impl.Core.csproj" />
<ProjectReference Include="LanguageServers\PowerPlatformLS\Impl.Language.CopilotStudio\Impl.Language.CopilotStudio.csproj" />
<ProjectReference Include="LanguageServers\PowerPlatformLS\Impl.Language.PowerFx\Impl.Language.PowerFx.csproj" />
<ProjectReference Include="LanguageServers\PowerPlatformLS\Impl.Language.Yaml\Impl.Language.Yaml.csproj" />
<ProjectReference Include="LanguageServers\PowerPlatformLS\Impl.PullAgent\Impl.PullAgent.csproj" />
<ProjectReference Include="LanguageServers\PowerPlatformLS\Impl.YamlSourceTree\Impl.YamlSourceTree.csproj" />
</ItemGroup>
</Project>
1,073 changes: 549 additions & 524 deletions src/vscode-extensions/package-lock.json

Large diffs are not rendered by default.

7 changes: 3 additions & 4 deletions version.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
{
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/main/src/NerdBank.GitVersioning/version.schema.json",
"version": "1.2",
"version": "1.0",
"assemblyVersion": {
"precision": "revision"
},
"publicReleaseRefSpec": [
"^refs/heads/main$",
"^refs/heads/vsix/releases/\\d+\\.\\d+$"
"^refs/heads/release/.*$"
],
"cloudBuild": {
"buildNumber": {
"enabled": true
}
},
"release": {
"branchName": "vsix/releases/{version}",
"branchName": "release/{version}",
"firstUnstableTag": "prerelease"
}
}
Loading