19 lines
778 B
XML
19 lines
778 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net472</TargetFramework>
|
|
<AssemblyName>RoslynLocalizeDetector</AssemblyName>
|
|
<RootNamespace>RoslynLocalizeDetector</RootNamespace>
|
|
<StartupObject></StartupObject>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Build" Version="15.9.20" ExcludeAssets="runtime" />
|
|
<PackageReference Include="Microsoft.Build.Locator" Version="1.2.2" />
|
|
<PackageReference Include="Microsoft.Build.Tasks.Core" Version="16.1.76" ExcludeAssets="runtime" />
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="2.8.2" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|