-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
24 lines (20 loc) · 960 Bytes
/
Directory.Build.props
File metadata and controls
24 lines (20 loc) · 960 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
<?xml version="1.0" encoding="utf-8" ?>
<Project>
<PropertyGroup>
<UseArtifactsOutput>true</UseArtifactsOutput>
<SolutionRoot>$(MSBuildThisFileDirectory)</SolutionRoot>
<RepositoryEngineeringDir>$(SolutionRoot)eng/</RepositoryEngineeringDir>
<RootNamespace>DarkPatterns.ProxyDevelopmentServer</RootNamespace>
<AssemblyName>DarkPatterns.$(MSBuildProjectName)</AssemblyName>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>12</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<VersionSuffix Condition=" '$(Configuration)' == 'Debug' ">local</VersionSuffix>
</PropertyGroup>
<Import Project="$(RepositoryEngineeringDir)package-defaults/package-defaults.props" />
<ItemGroup>
<PackageReference Include="DarkPatterns.Build.Structure" Version="0.1.1" PrivateAssets="All" />
<PackageReference Include="DarkPatterns.Build.Autoformat" Version="0.2.0" PrivateAssets="All" />
</ItemGroup>
</Project>