-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDocumentTranslationService.csproj
More file actions
31 lines (25 loc) · 1.16 KB
/
DocumentTranslationService.csproj
File metadata and controls
31 lines (25 loc) · 1.16 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
30
31
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Version>0.0.6</Version>
<PackageProjectUrl>https://github.com/microsofttranslator/documenttranslation</PackageProjectUrl>
<NeutralLanguage>en</NeutralLanguage>
</PropertyGroup>
<ItemGroup>
<Compile Remove="FileFormatList.cs" />
<Compile Remove="ServiceErrorException.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.AI.Translation.Document" Version="1.0.0" />
<PackageReference Include="Azure.Identity" Version="1.12.0" />
<PackageReference Include="Azure.Security.KeyVault.Secrets" Version="4.6.0" />
<PackageReference Include="Azure.Storage.Blobs" Version="12.21.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="if $(ConfigurationName) == Release "C:\Program Files (x86)\Windows Kits\10\bin\10.0.22000.0\x64\signtool.exe" sign /v /fd SHA256 /i Sectigo $(OutDir)\DocumentTranslationService.dll
" />
</Target>
</Project>