forked from pyrevitlabs/pyRevit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.csproj
More file actions
34 lines (29 loc) · 1.13 KB
/
Copy pathBuild.csproj
File metadata and controls
34 lines (29 loc) · 1.13 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>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>Build</RootNamespace>
<AssemblyName>pyRevit.Build</AssemblyName>
<DefaultItemExcludes>$(DefaultItemExcludes);tests/**</DefaultItemExcludes>
</PropertyGroup>
<ItemGroup>
<InternalsVisibleTo Include="Build.Tests" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ModularPipelines" Version="3.2.8" />
<PackageReference Include="ModularPipelines.Cmd" Version="3.2.8" />
<PackageReference Include="ModularPipelines.DotNet" Version="3.2.8" />
<PackageReference Include="ModularPipelines.Git" Version="3.2.8" />
<PackageReference Include="ModularPipelines.GitHub" Version="3.2.8" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="appsettings.Production.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>