-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathNice3point.TUnit.Revit.csproj
More file actions
68 lines (56 loc) · 3.06 KB
/
Nice3point.TUnit.Revit.csproj
File metadata and controls
68 lines (56 loc) · 3.06 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<Project Sdk="Nice3point.Revit.Sdk/6.2.1">
<PropertyGroup>
<OutputType>Library</OutputType>
<EnableTUnitPolyfills>false</EnableTUnitPolyfills>
<Configurations>Debug.R21;Debug.R22;Debug.R23;Debug.R24;Debug.R25;Debug.R26;Debug.R27</Configurations>
<Configurations>$(Configurations);Release.R21;Release.R22;Release.R23;Release.R24;Release.R25;Release.R26;Release.R27</Configurations>
</PropertyGroup>
<PropertyGroup>
<PackageType>Dependency</PackageType>
<PackageId>Nice3point.TUnit.Revit</PackageId>
<Authors>Nice3point</Authors>
<Description>.NET testing framework for Revit</Description>
<PackageTags>autodesk;revit;unit;tests</PackageTags>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/Nice3point/RevitUnit</RepositoryUrl>
<PackageProjectUrl>https://github.com/Nice3point/RevitUnit</PackageProjectUrl>
<PackageIcon>images\PackageIcon.png</PackageIcon>
<PackageLicenseFile>License.md</PackageLicenseFile>
<PackageReadmeFile>Readme.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup>
<IsPackable>true</IsPackable>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup>
<None Include="..\.nuget\PackageIcon.png" PackagePath="images\" Pack="true" Visible="false"/>
<None Include="..\License.md" PackagePath="" Pack="true" Visible="false"/>
<None Include="..\Readme.md" PackagePath="" Pack="true" Visible="false"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Nice3point.Revit.Api.RevitAPI" PrivateAssets="all"/>
<PackageReference Include="Nice3point.Revit.Injector" PrivateAssets="all"/>
<PackageReference Include="TUnit"/>
<PackageReference Include="PolyHook2.NET"/>
</ItemGroup>
<ItemGroup Condition="'$(TargetFrameworkIdentifier)' == '.NETCoreApp'">
<FrameworkReference Include="Microsoft.AspNetCore.App"/>
<FrameworkReference Include="Microsoft.WindowsDesktop.App"/>
</ItemGroup>
<Target Name="CopyRepackDependencies" AfterTargets="Build" Condition="$(Configuration.Contains('Release'))">
<PropertyGroup>
<DependenciesFolder>$(OutDir)Dependencies</DependenciesFolder>
</PropertyGroup>
<MakeDir Directories="$(DependenciesFolder)" Condition="!Exists('$(DependenciesFolder)')"/>
<ItemGroup>
<AllReferences Include="@(ReferencePathWithRefAssemblies)"/>
</ItemGroup>
<Copy SourceFiles="@(AllReferences)" DestinationFolder="$(DependenciesFolder)" SkipUnchangedFiles="true"/>
<Message Text="Copied dependencies to: $(DependenciesFolder)" Importance="high"/>
</Target>
</Project>