-
Notifications
You must be signed in to change notification settings - Fork 1
/
Jumoo.TranslationManager.OpenAi.csproj
60 lines (47 loc) · 2.18 KB
/
Jumoo.TranslationManager.OpenAi.csproj
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFrameworks>net6.0;net8.0;net9.0</TargetFrameworks>
<StaticWebAssetBasePath>/</StaticWebAssetBasePath>
</PropertyGroup>
<PropertyGroup>
<Title>Jumoo.TranslationManager.OpenAi</Title>
<PackageId>Jumoo.TranslationManager.OpenAi</PackageId>
<Product>Jumoo.TranslationManager.OpenAi</Product>
<Authors>Jumoo</Authors>
<Description></Description>
<releaseNotes></releaseNotes>
<Copyright>Jumoo 2023</Copyright>
<PackageTags>umbraco, umbraco-cms, translations, umbraco-marketplace</PackageTags>
<PackageProjectUrl>https://github.com/Jumoo/Jumoo.TranslationManager.OpenAi</PackageProjectUrl>
<RepositoryUrl>https://github.com/Jumoo/Jumoo.TranslationManager.OpenAi</RepositoryUrl>
</PropertyGroup>
<PropertyGroup>
<PackageIcon>logo.png</PackageIcon>
<PackageReadmeFile>readme.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="logo.png" Pack="true" PackagePath="\" />
<None Include="readme.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup Condition="$(DefineConstants.Contains(UMB_10_ONLY))">
<PackageReference Include="Jumoo.TranslationManager.Core" Version="10.0.0" />
<PackageReference Include="Jumoo.TranslationManager.Serializers" Version="10.0.0" />
<PackageReference Include="Umbraco.Cms.Web.BackOffice" Version="10.0.0" />
</ItemGroup>
<ItemGroup Condition="$(DefineConstants.Contains(UMB_13_ONLY))">
<PackageReference Include="Jumoo.TranslationManager.Core" Version="13.0.0" />
<PackageReference Include="Jumoo.TranslationManager.Serializers" Version="13.0.0" />
<PackageReference Include="Umbraco.Cms.Web.BackOffice" Version="13.0.0" />
</ItemGroup>
<ItemGroup Condition="$(DefineConstants.Contains(UMB_15_ONLY))">
<PackageReference Include="Jumoo.TranslationManager.Core" Version="15.0.0" />
<PackageReference Include="Jumoo.TranslationManager.Serializers" Version="15.0.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.AI.OpenAI" Version="1.0.0-beta.8" />
<PackageReference Include="Betalgo.OpenAI" Version="7.3.1" />
</ItemGroup>
<ItemGroup>
<Folder Include="wwwroot\App_Plugins\Translations.OpenAi\modern\" />
</ItemGroup>
</Project>