mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-27 22:39:47 +00:00
22 lines
591 B
XML
22 lines
591 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>Exe</OutputType>
|
|||
|
<TargetFramework>net9.0</TargetFramework>
|
|||
|
<RootNamespace>Build</RootNamespace>
|
|||
|
<LangVersion>latest</LangVersion>
|
|||
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
<Nullable>enable</Nullable>
|
|||
|
<AssemblyName>build</AssemblyName>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="Cocona" Version="2.2.0" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\SharedTools\SharedTools.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|