-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
22 lines (22 loc) · 1012 Bytes
/
Copy pathDirectory.Build.props
File metadata and controls
22 lines (22 loc) · 1012 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project>
<PropertyGroup>
<Version>1.5.2</Version>
<Authors>YnabMcpServer Contributors</Authors>
<Company>YnabMcpServer</Company>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/ChuckBryan/ynabmcpserver</PackageProjectUrl>
<RepositoryUrl>https://github.com/ChuckBryan/ynabmcpserver</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<!-- Container configuration -->
<EnableSdkContainerSupport>true</EnableSdkContainerSupport>
<ContainerRegistry>docker.io</ContainerRegistry>
<!-- Default to swampyfox if DockerUsername is not provided -->
<DockerUsername Condition="'$(DockerUsername)' == ''">swampyfox</DockerUsername>
<ContainerRepository>$(DockerUsername)/ynabmcp</ContainerRepository>
<ContainerImageTag>$(Version)</ContainerImageTag>
<ContainerFamily>alpine</ContainerFamily>
</PropertyGroup>
<ItemGroup>
<ContainerEnvironmentVariable Include="YNAB_API_TOKEN" />
</ItemGroup>
</Project>