Skip to content

Commit

Permalink
ci: removes dev from triggers
Browse files Browse the repository at this point in the history
  • Loading branch information
baywet committed Feb 5, 2025
1 parent 510ebcf commit 11fc7da
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
12 changes: 12 additions & 0 deletions kiota.sln
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{EAAC5CEA-33B
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KiotaGenerated", "src\Kiota.Generated\KiotaGenerated.csproj", "{01ABDF23-60CD-4CE3-8DC7-8654C4BA1EE8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.OpenApi", "..\OpenAPI.NET\src\Microsoft.OpenApi\Microsoft.OpenApi.csproj", "{283A39B7-5433-4584-B854-55FC683B5DCE}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.OpenApi.Readers", "..\OpenAPI.NET\src\Microsoft.OpenApi.Readers\Microsoft.OpenApi.Readers.csproj", "{13A993DB-977B-4DB4-A699-1581FAF7708A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -49,6 +53,14 @@ Global
{01ABDF23-60CD-4CE3-8DC7-8654C4BA1EE8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{01ABDF23-60CD-4CE3-8DC7-8654C4BA1EE8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{01ABDF23-60CD-4CE3-8DC7-8654C4BA1EE8}.Release|Any CPU.Build.0 = Release|Any CPU
{283A39B7-5433-4584-B854-55FC683B5DCE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{283A39B7-5433-4584-B854-55FC683B5DCE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{283A39B7-5433-4584-B854-55FC683B5DCE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{283A39B7-5433-4584-B854-55FC683B5DCE}.Release|Any CPU.Build.0 = Release|Any CPU
{13A993DB-977B-4DB4-A699-1581FAF7708A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{13A993DB-977B-4DB4-A699-1581FAF7708A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{13A993DB-977B-4DB4-A699-1581FAF7708A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{13A993DB-977B-4DB4-A699-1581FAF7708A}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
8 changes: 6 additions & 2 deletions src/Kiota.Builder/Kiota.Builder.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@
<PackageReference Include="Microsoft.Kiota.Serialization.Json" Version="1.16.4" />
<PackageReference Include="Microsoft.Kiota.Serialization.Text" Version="1.16.4" />
<PackageReference Include="Microsoft.kiota.Serialization.Multipart" Version="1.16.4" />
<PackageReference Include="Microsoft.OpenApi" Version="2.0.0-preview5" />
<!-- <PackageReference Include="Microsoft.OpenApi" Version="2.0.0-preview5" /> -->
<PackageReference Include="Microsoft.OpenApi.ApiManifest" Version="0.6.0-preview" />
<PackageReference Include="Microsoft.OpenApi.Readers" Version="2.0.0-preview5" />
<!-- <PackageReference Include="Microsoft.OpenApi.Readers" Version="2.0.0-preview5" /> -->
<PackageReference Include="Microsoft.Plugins.Manifest" Version="1.0.0-rc4" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.12.19">
Expand All @@ -62,4 +62,8 @@
<ItemGroup>
<None Include="../../README.md" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\OpenAPI.NET\src\Microsoft.OpenApi.Readers\Microsoft.OpenApi.Readers.csproj" />
<ProjectReference Include="..\..\..\OpenAPI.NET\src\Microsoft.OpenApi\Microsoft.OpenApi.csproj" />
</ItemGroup>
</Project>
3 changes: 2 additions & 1 deletion src/kiota/kiota.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Kiota.Builder\Kiota.Builder.csproj" />
<ProjectReference Include="..\..\..\OpenAPI.NET\src\Microsoft.OpenApi.Readers\Microsoft.OpenApi.Readers.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.1" />
Expand All @@ -47,7 +48,7 @@
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.1" />
<PackageReference Include="Microsoft.OpenApi.ApiManifest" Version="0.6.0-preview" />
<PackageReference Include="Microsoft.OpenApi.Readers" Version="2.0.0-preview5" />
<!-- <PackageReference Include="Microsoft.OpenApi.Readers" Version="2.0.0-preview5" /> -->
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.12.19">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
Expand Down

0 comments on commit 11fc7da

Please sign in to comment.