forked from roslynpad/roslynpad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
47 lines (47 loc) · 2.52 KB
/
Directory.Build.props
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
<Project>
<PropertyGroup>
<RepoRoot>$(MSBuildThisFileDirectory)</RepoRoot>
<DefaultTargetFramework>net8.0</DefaultTargetFramework>
<LtsTargetFramework>net8.0</LtsTargetFramework>
<EarliestSupportedTargetFramework>net6.0</EarliestSupportedTargetFramework>
<UseWPF Condition=" $(MSBuildProjectName.Contains('Windows')) ">true</UseWPF>
<TargetFramework Condition=" '$(UseWPF)' == 'true' ">$(LtsTargetFramework)-windows</TargetFramework>
<TargetFramework Condition=" '$(TargetFramework)' == '' and '$(TargetFrameworks)' == '' ">$(DefaultTargetFramework)</TargetFramework>
<IsMacOS>$([System.OperatingSystem]::IsMacOS())</IsMacOS>
<IsMacBuild Condition=" '$(IsMacOS)' == 'true' and ( '$(RuntimeIdentifier)' == '' or $(RuntimeIdentifier.Contains('osx')) ) ">true</IsMacBuild>
<Features>strict</Features>
<Deterministic>True</Deterministic>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
<Version>4.8.0</Version>
<RoslynPadVersion>19.1.0</RoslynPadVersion>
<ApplicationVersion>$(RoslynPadVersion.Replace('.', ''))</ApplicationVersion>
<ApplicationDisplayVersion>$(RoslynPadVersion)</ApplicationDisplayVersion>
<LangVersion>latest</LangVersion>
<Nullable>Enable</Nullable>
<AnalysisMode>Recommended</AnalysisMode>
<IsPackable>false</IsPackable>
<Authors>Eli Arbel</Authors>
<PackageProjectUrl>https://roslynpad.net</PackageProjectUrl>
<RepositoryUrl>https://github.com/roslynpad/roslynpad</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>Roslyn;RoslynPad</PackageTags>
<PackageIcon>RoslynPad.png</PackageIcon>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<IncludePackageReferencesDuringMarkupCompilation>true</IncludePackageReferencesDuringMarkupCompilation>
<TrimMode>partial</TrimMode>
<TrimmerSingleWarn>false</TrimmerSingleWarn>
</PropertyGroup>
<PropertyGroup>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
</PropertyGroup>
<PropertyGroup>
<_RoslynPadInitialRuntimeIdentifier>$(RuntimeIdentifier)</_RoslynPadInitialRuntimeIdentifier>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)\src\RoslynPad\Resources\RoslynPad.png" Pack="true" PackagePath="\" Visible="false" />
</ItemGroup>
</Project>