forked from 12noonLLC/LicenseManagerX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
27 lines (23 loc) · 921 Bytes
/
Copy pathDirectory.Build.props
File metadata and controls
27 lines (23 loc) · 921 Bytes
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
<Project>
<!--
https://aka.ms/dotnet/msbuild/customize
https://docs.microsoft.com/en-us/visualstudio/msbuild/customize-your-build
https://stackoverflow.com/questions/45575280/msbuild-nuget-restoreoutputpath-how-to-make-it-work
-->
<PropertyGroup>
<Company>12noon</Company>
<Copyright>(c) 2024 12noon, Stefan K.S. Tucker</Copyright>
<Product>License Manager</Product>
<VersionPrefix>1.1.2</VersionPrefix>
<FileVersion>1.1.2.0</FileVersion>
<AssemblyVersion>1.1.2</AssemblyVersion>
</PropertyGroup>
<PropertyGroup>
<!-- No need to use $(MSBuildProjectName) because VS creates subfolders in obj\ and bin\ -->
<!--
<ArtifactsPath>C:\VSIntermediate\$(SolutionName)\artifacts</ArtifactsPath>
-->
<!-- Must hardcode path for when using `dotnet` from command line using just CSPROJ file. -->
<ArtifactsPath>C:\VSIntermediate\LicenseManager\artifacts</ArtifactsPath>
</PropertyGroup>
</Project>