-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
64 lines (41 loc) · 1.82 KB
/
Directory.Build.props
File metadata and controls
64 lines (41 loc) · 1.82 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
<Project>
<!-- Import the Arcade SDK -->
<Import Project="Sdk.props" Sdk="Microsoft.DotNet.Arcade.Sdk" />
<!-- The product branding version -->
<PropertyGroup>
<VersionPrefix>0.0.0</VersionPrefix>
</PropertyGroup>
<!-- Language Features -->
<PropertyGroup>
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>
<AnalysisLevel>preview</AnalysisLevel>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<!-- Test Frameworks -->
<PropertyGroup>
<TestTargetFrameworks>net7.0</TestTargetFrameworks>
</PropertyGroup>
<!-- Repository -->
<PropertyGroup>
<GitHubOrhanizationName>ioc-dot-net</GitHubOrhanizationName>
<GitHubRepositoryName>runtime</GitHubRepositoryName>
<RepositoryUrl>https://github.com/$(GitHubOrhanizationName)/$(GitHubRepositoryName)</RepositoryUrl>
<PackageProjectUrl>https://github.com/$(GitHubOrhanizationName)/$(GitHubRepositoryName)/tree/main/src/libraries/$(MSBuildProjectName)</PackageProjectUrl>
</PropertyGroup>
<!-- General -->
<PropertyGroup>
<Product>Dependency Injection Precompiler</Product>
<Owners>ENikS</Owners>
<Authors>$(Owners)</Authors>
<Company>$(Owners)</Company>
<Copyright>$(Owners)</Copyright>
<CopyrightMicrosoft>$(Owners)</CopyrightMicrosoft>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<!-- TDOD: Change -->
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<LicenseFile>$([MSBuild]::NormalizePath('$(MSBuildThisFileDirectory)', 'LICENSE.TXT'))</LicenseFile>
<PackageIcon>$([MSBuild]::NormalizePath('$(RepoRoot)', 'eng', 'common', 'native', 'package.png'))</PackageIcon>
<ApplicationIcon>$([MSBuild]::NormalizePath('$(RepoRoot)', 'eng', 'common', 'native', 'package.ico'))</ApplicationIcon>
</PropertyGroup>
</Project>