-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
51 lines (51 loc) · 2.98 KB
/
Copy pathDirectory.Build.props
File metadata and controls
51 lines (51 loc) · 2.98 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AnalysisLevel>latest-recommended</AnalysisLevel>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Deterministic>true</Deterministic>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<VersionPrefix>0.3.6</VersionPrefix>
<ProductDisplayName>ResoDrive</ProductDisplayName>
<ExecutableBaseName>resodrive</ExecutableBaseName>
<ProductDescription>Mount Nextcloud, other WebDAV storage, and SFTP servers as drives in Windows</ProductDescription>
<ProductPublisher>Alexey Ivanov</ProductPublisher>
<!-- Repository identity is centralized here for application links, package
metadata, update checks, documentation, and release automation. -->
<GitHubOwner>alphasixtyfive</GitHubOwner>
<GitHubRepository>resodrive</GitHubRepository>
<GitHubBaseUrl>https://github.com</GitHubBaseUrl>
<DeveloperUrl>$(GitHubBaseUrl)/$(GitHubOwner)</DeveloperUrl>
<RepositoryUrl>$(GitHubBaseUrl)/$(GitHubOwner)/$(GitHubRepository)</RepositoryUrl>
<RepositoryReleasesUrl>$(RepositoryUrl)/releases</RepositoryReleasesUrl>
<RepositoryLatestReleaseUrl>$(RepositoryReleasesUrl)/latest</RepositoryLatestReleaseUrl>
<RepositoryIssuesUrl>$(RepositoryUrl)/issues</RepositoryIssuesUrl>
<Authors>$(ProductPublisher)</Authors>
<Company>$(ProductPublisher)</Company>
<Product>$(ProductDisplayName)</Product>
<Description>$(ProductDescription)</Description>
<Copyright>Copyright © 2026 Alexey Ivanov</Copyright>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<DotNetDesktopRuntimeVersion>10.0.11</DotNetDesktopRuntimeVersion>
<DotNetDesktopRuntimeMinimumVersion>10.0.0</DotNetDesktopRuntimeMinimumVersion>
<DotNetDesktopRuntimeUrl>https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.11/windowsdesktop-runtime-10.0.11-win-x64.exe</DotNetDesktopRuntimeUrl>
<DotNetDesktopRuntimeSha512>4dbf26b0b78f55c5f59a46c3c81327b23a04f449f7ac6798204dcd19d99459258936daaede61d1b8c1ba523d6c26bf68bac86b3371d22e67cef235edbdc2f26c</DotNetDesktopRuntimeSha512>
<DotNetDesktopRuntimeSize>60001888</DotNetDesktopRuntimeSize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<AssemblyMetadata Include="DeveloperUrl" Value="$(DeveloperUrl)" />
<AssemblyMetadata Include="RepositoryUrl" Value="$(RepositoryUrl)" />
<AssemblyMetadata Include="RepositoryReleasesUrl" Value="$(RepositoryReleasesUrl)" />
<AssemblyMetadata Include="RepositoryLatestReleaseUrl" Value="$(RepositoryLatestReleaseUrl)" />
<AssemblyMetadata Include="RepositoryIssuesUrl" Value="$(RepositoryIssuesUrl)" />
</ItemGroup>
</Project>