-
Notifications
You must be signed in to change notification settings - Fork 134
/
PathLocator.csproj
30 lines (30 loc) · 1.46 KB
/
PathLocator.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.0.8</Version>
<authors>JetBrains</authors>
<LangVersion>10</LangVersion>
<PackageId>JetBrains.Rider.PathLocator</PackageId>
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
<AssemblyName>JetBrains.Rider.PathLocator</AssemblyName>
<RootNamespace>JetBrains.Rider.PathLocator</RootNamespace>
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsNotAsErrors>CS0618</WarningsNotAsErrors>
<AssemblyOriginatorKeyFile>..\..\sign.snk</AssemblyOriginatorKeyFile>
<LangVersion>9</LangVersion>
<Description>The code, which locates Rider installations in the system.</Description>
<RepositoryUrl>https://github.com/JetBrains/resharper-unity/</RepositoryUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="JetBrains.Annotations" Version="2022.3.1" PrivateAssets="All" />
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="Microsoft.Win32.Registry" Version="5.0.0" />
</ItemGroup>
</Project>