forked from jaredpar/basic-reference-assemblies
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
22 lines (19 loc) · 899 Bytes
/
Directory.Build.props
File metadata and controls
22 lines (19 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project>
<PropertyGroup>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<DebugType>Embedded</DebugType>
<EmbedAllSources>True</EmbedAllSources>
<!-- NuGet Properties -->
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/jaredpar/basic-reference-assemblies</RepositoryUrl>
<Authors>jaredpar</Authors>
<Title>Basic.Reference.Assemblies: Reference assemblies for use in Roslyn</Title>
<PackageDescription>
This package provides reference assemblies for use in Roslyn Compilation objects. This greatly
simplifies the work involved in doing in memory compilations with the Microsoft.CodeAnalysis
API. Developers can now create correct Compilations with reference sets from all of the major
target frameworks: netcoreapp31, net50 and netstandard.
</PackageDescription>
</PropertyGroup>
</Project>