-
-
Notifications
You must be signed in to change notification settings - Fork 442
Expand file tree
/
Copy pathpyRevitCLI.csproj
More file actions
34 lines (28 loc) · 1.35 KB
/
pyRevitCLI.csproj
File metadata and controls
34 lines (28 loc) · 1.35 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<AssemblyName>pyrevit</AssemblyName>
<ApplicationIcon>pyrevit_cli.ico</ApplicationIcon>
<ApplicationManifest>pyrevit.manifest</ApplicationManifest>
<SignAssembly>true</SignAssembly>
<UseDefaultBin>true</UseDefaultBin>
<Platforms>x64</Platforms>
<TargetFramework>net8.0-windows</TargetFramework>
<PermitDeploy>true</PermitDeploy>
</PropertyGroup>
<ItemGroup>
<Reference Include="pyRevitLabs.Json" HintPath="$(PyRevitDevLibsDir)\pyRevitLabs.Json.dll" Private="true" />
<Reference Include="pyRevitLabs.NLog" HintPath="$(PyRevitDevLibsDir)\pyRevitLabs.NLog.dll" Private="true" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="docopt.net" Version="0.8.3" />
<PackageReference Include="Colorful.Console" Version="1.2.15" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\pyRevitLabs.Common\pyRevitLabs.Common.csproj" />
<ProjectReference Include="..\pyRevitLabs.CommonCLI\pyRevitLabs.CommonCLI.csproj" />
<ProjectReference Include="..\pyRevitLabs.Language\pyRevitLabs.Language.csproj" />
<ProjectReference Include="..\pyRevitLabs.pyRevit\pyRevitLabs.PyRevit.csproj" />
<ProjectReference Include="..\pyRevitLabs.TargetApps.Revit\pyRevitLabs.TargetApps.Revit.csproj" />
</ItemGroup>
</Project>