Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono-addins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mautil
diff options
context:
space:
mode:
authorMikkel Kruse Johnsen <mikkel@xmedicus.com>2020-12-16 12:25:15 +0300
committerMikkel Kruse Johnsen <mikkel@xmedicus.com>2020-12-16 12:25:15 +0300
commitc49fa850fccc2bd6ccbc290a430ba07e8a0af035 (patch)
tree7711f9efa0706fa21a269d05649c13c86ec29f68 /mautil
parent4ae477426811bfd913e10d6940a5eec43ab07ae3 (diff)
Update to new MSBuild format in project files. Changed Mono.Addins to .NETStandard2.0
Diffstat (limited to 'mautil')
-rw-r--r--mautil/mautil.csproj11
1 files changed, 7 insertions, 4 deletions
diff --git a/mautil/mautil.csproj b/mautil/mautil.csproj
index 49d2ee0..d50c997 100644
--- a/mautil/mautil.csproj
+++ b/mautil/mautil.csproj
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
- <Import Project="..\TargetFrameworks.props" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -10,6 +9,7 @@
<AssemblyName>mautil</AssemblyName>
<SchemaVersion>2.0</SchemaVersion>
<RootNamespace>mautil</RootNamespace>
+ <TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>
@@ -32,9 +32,6 @@
<Commandlineparameters>rb /home/lluis/work/monodevelop/main/build/AddIns/NUnit</Commandlineparameters>
</PropertyGroup>
<ItemGroup>
- <Reference Include="System" />
- </ItemGroup>
- <ItemGroup>
<ProjectReference Include="..\Mono.Addins\Mono.Addins.csproj">
<Project>{91DD5A2D-9FE3-4C3C-9253-876141874DAD}</Project>
<Name>Mono.Addins</Name>
@@ -48,5 +45,11 @@
<Compile Include="Main.cs" />
<Compile Include="AssemblyInfo.cs" />
</ItemGroup>
+ <ItemGroup>
+ <PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies.net462" Version="1.0.0">
+ <PrivateAssets>all</PrivateAssets>
+ <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
+ </PackageReference>
+ </ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project> \ No newline at end of file