-
Notifications
You must be signed in to change notification settings - Fork 280
Expand file tree
/
Copy pathMicrosoft.AI.Foundry.Local.csproj
More file actions
29 lines (25 loc) · 1.19 KB
/
Microsoft.AI.Foundry.Local.csproj
File metadata and controls
29 lines (25 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Authors>Microsoft</Authors>
<Company>Microsoft Corporation</Company>
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageProjectUrl>https://github.com/microsoft/Foundry-Local</PackageProjectUrl>
<PackageDescription>Microsoft AI Foundry Local SDK for .NET</PackageDescription>
<PackageTags>Microsoft AI Foundry SDK</PackageTags>
<RepositoryUrl>https://github.com/microsoft/Foundry-Local</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>0.2.0</Version>
</PropertyGroup>
<PropertyGroup>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)../README.md" Pack="true" PackagePath=""/>
<None Include="$(MSBuildThisFileDirectory)../LICENSE.txt" Pack="true" PackagePath=""/>
</ItemGroup>
</Project>