-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMonai.Deploy.Storage.AWSS3.csproj
51 lines (51 loc) · 2.34 KB
/
Monai.Deploy.Storage.AWSS3.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
<!--
~ Copyright 2021-2024 MONAI Consortium
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>latest</LangVersion>
<RootNamespace>Monai.Deploy.Storage.AWSS3</RootNamespace>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\..\LICENSE" Link="LICENSE" PackagePath="" Pack="true" />
<None Include="..\..\..\third-party-licenses.md" Link="third-party-licenses.md" PackagePath="" Pack="true" />
</ItemGroup>
<PropertyGroup>
<PackageId>Monai.Deploy.Storage.AWSS3</PackageId>
<Version>0.1.0</Version>
<Authors>MONAI Consortium</Authors>
<Company>MONAI Consortium</Company>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Description>Amazon S3 plug-in for MONAI Deploy Storage Service.</Description>
<Copyright>MONAI Consortium</Copyright>
<PackageProjectUrl>https://github.com/Project-MONAI/monai-deploy-storage</PackageProjectUrl>
<RepositoryUrl>https://github.com/Project-MONAI/monai-deploy-storage</RepositoryUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\AssemblyInfo.cs" Link="AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AWSSDK.S3" Version="3.7.309.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\S3Policy\Monai.Deploy.Storage.S3Policy.csproj" />
<ProjectReference Include="..\..\Storage\Monai.Deploy.Storage.csproj" />
</ItemGroup>
</Project>