-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9d1cecc
commit 4f61f44
Showing
7 changed files
with
151 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<!-- Default properties inherited by all projects. Projects can override. --> | ||
<RunAnalyzersDuringBuild>true</RunAnalyzersDuringBuild> | ||
<EnableNETAnalyzers>true</EnableNETAnalyzers> | ||
<AnalysisMode>AllEnabledByDefault</AnalysisMode> | ||
<AnalysisLevel>latest</AnalysisLevel> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<LangVersion>10</LangVersion> | ||
<Nullable>enable</Nullable> | ||
<ImplicitUsings>disable</ImplicitUsings> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<!-- Disable NuGet packaging by default. Projects can override. --> | ||
<IsPackable>disable</IsPackable> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> | ||
<DebugType>portable</DebugType> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<RepoRoot>$([System.IO.Path]::GetDirectoryName($([MSBuild]::GetPathOfFileAbove('.gitignore', '$(MSBuildThisFileDirectory)'))))</RepoRoot> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<!-- Add CLSCompliant=false to all projects by default. Projects can override. --> | ||
<AssemblyAttribute Include="System.CLSCompliantAttribute"> | ||
<_Parameter1>false</_Parameter1> | ||
</AssemblyAttribute> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<Project> | ||
<!-- Direct all packages under 'dotnet' to get versions from Directory.Packages.props --> | ||
<!-- using Central Package Management feature --> | ||
<!-- https://learn.microsoft.com/en-us/nuget/consume-packages/Central-Package-Management --> | ||
<Sdk Name="Microsoft.Build.CentralPackageVersions" Version="2.1.3" /> | ||
<!-- Only run 'dotnet format' on dev machines, Release builds. Skip on GitHub Actions --> | ||
<!-- as this runs in its own Actions job. --> | ||
<Target Name="DotnetFormatOnBuild" BeforeTargets="Build" | ||
Condition=" '$(Configuration)' == 'Release' AND '$(GITHUB_ACTIONS)' == '' "> | ||
<Message Text="Running dotnet format" Importance="high" /> | ||
<Exec Command="dotnet format --no-restore -v diag $(ProjectFileName)" /> | ||
</Target> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<!-- Enable central package management --> | ||
<!-- https://learn.microsoft.com/en-us/nuget/consume-packages/Central-Package-Management --> | ||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
|
||
<PackageVersion Include="Handlebars.Net" Version="2.1.4" /> | ||
<PackageVersion Include="Microsoft.Extensions.Configuration" Version="8.0.0" /> | ||
<PackageVersion Include="Microsoft.Extensions.Configuration.Abstractions" Version="8.0.0" /> | ||
<PackageVersion Include="Microsoft.Extensions.Configuration.Binder" Version="8.0.0" /> | ||
<PackageVersion Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="8.0.0" /> | ||
<PackageVersion Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" /> | ||
<PackageVersion Include="Microsoft.Extensions.Configuration.UserSecrets" Version="8.0.0" /> | ||
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" /> | ||
<PackageVersion Include="Microsoft.Extensions.Logging" Version="8.0.0" /> | ||
<PackageVersion Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" /> | ||
<PackageVersion Include="Microsoft.Extensions.Http" Version="8.0.0" /> | ||
<PackageVersion Include="Microsoft.SemanticKernel" Version="1.0.1" /> | ||
<PackageVersion Include="Microsoft.SemanticKernel.Abstractions" Version="1.0.1" /> | ||
<PackageVersion Include="Microsoft.SemanticKernel.Core" Version="1.0.1" /> | ||
<PackageVersion Include="Microsoft.SemanticKernel.Planners.Handlebars" Version="1.0.1-preview" /> | ||
<PackageVersion Include="Microsoft.SemanticKernel.Planners.OpenAI" Version="1.0.1-preview" /> | ||
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="8.0.0" /> | ||
<PackageVersion Include="xunit.extensibility.execution" Version="2.6.3" /> | ||
<PackageVersion Include="YamlDotNet" Version="13.7.1" /> | ||
<PackageVersion Include="FinancialFormulas" Version="1.3.1" /> | ||
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.8.0" /> | ||
<PackageVersion Include="Moq" Version="4.20.70" /> | ||
<PackageVersion Include="xunit" Version="2.6.3" /> | ||
<PackageVersion Include="xunit.runner.visualstudio" Version="2.5.5" /> | ||
<PackageVersion Include="coverlet.collector" Version="6.0.0" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
|
||
<packageSources> | ||
<clear /> | ||
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" /> | ||
</packageSources> | ||
|
||
<packageSourceMapping> | ||
<packageSource key="nuget.org"> | ||
<package pattern="*" /> | ||
</packageSource> | ||
</packageSourceMapping> | ||
|
||
</configuration> |