File tree 5 files changed +32
-4
lines changed
5 files changed +32
-4
lines changed Original file line number Diff line number Diff line change 9
9
},
10
10
"norc" : {
11
11
"commandName" : " Project" ,
12
- "commandLineArgs" : " -u NORC"
12
+ "commandLineArgs" : " -u NORC" ,
13
+ "workingDirectory" : " C:\\ Users\\ Yatao"
13
14
},
14
15
"built_nvim" : {
15
16
"commandName" : " Project" ,
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <assembly manifestVersion =" 1.0" xmlns =" urn:schemas-microsoft-com:asm.v1" >
3
+ <!-- This manifest is used on Windows only.
4
+ Don't remove it as it might cause problems with window transparency and embedded controls.
5
+ For more details visit https://learn.microsoft.com/en-us/windows/win32/sbscs/application-manifests -->
6
+ <assemblyIdentity version =" 1.0.0.0" name =" FVim" />
7
+
8
+ <compatibility xmlns =" urn:schemas-microsoft-com:compatibility.v1" >
9
+ <application >
10
+ <!-- A list of the Windows versions that this application has been tested on
11
+ and is designed to work with. Uncomment the appropriate elements
12
+ and Windows will automatically select the most compatible environment. -->
13
+
14
+ <!-- Windows 10 -->
15
+ <supportedOS Id =" {8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />
16
+ </application >
17
+ </compatibility >
18
+ </assembly >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net7 .0</TargetFramework >
4
+ <TargetFramework >net6 .0</TargetFramework >
5
5
<AssemblyName >FVim</AssemblyName >
6
6
<Prefer32Bit >false</Prefer32Bit >
7
7
<ApplicationIcon >Assets\fvim.ico</ApplicationIcon >
8
8
<OutputType >Exe</OutputType >
9
+ <!-- New options from https://github.com/AvaloniaUI/avalonia-dotnet-templates/blob/master/templates/fsharp/app/AvaloniaAppTemplate.fsproj below:-->
10
+ <BuiltInComInteropSupport >true</BuiltInComInteropSupport >
11
+ <ApplicationManifest >app.manifest</ApplicationManifest >
12
+ <AvaloniaUseCompiledBindingsByDefault >true</AvaloniaUseCompiledBindingsByDefault >
9
13
</PropertyGroup >
10
14
15
+ <ItemGroup >
16
+ <TrimmerRootAssembly Include =" Avalonia.Themes.Fluent" />
17
+ </ItemGroup >
18
+
11
19
<PropertyGroup Condition =" '$(Configuration)' == 'Release'" >
12
20
<OutputType >WinExe</OutputType >
13
21
<PublishTrimmed >true</PublishTrimmed >
84
92
<PackageReference Include =" Avalonia.ReactiveUI" Version =" 0.10.19" />
85
93
<PackageReference Include =" Avalonia.Diagnostics" Version =" 0.10.19" />
86
94
<PackageReference Include =" Avalonia.Svg" Version =" 0.10.18" />
95
+ <PackageReference Include =" XamlNameReferenceGenerator" Version =" 1.6.1" />
87
96
88
97
<PackageReference Include =" FSharp.Control.Reactive" Version =" 5.0.5" />
89
98
<PackageReference Include =" FSharp.Data" Version =" 5.0.2" />
Original file line number Diff line number Diff line change 2
2
<Project ToolsVersion =" 15.0" xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
3
3
<PropertyGroup >
4
4
<_LastSelectedProfileId >F:\git\fvim\Properties\PublishProfiles\FolderProfile.pubxml</_LastSelectedProfileId >
5
- <ActiveDebugProfile >fvim </ActiveDebugProfile >
5
+ <ActiveDebugProfile >norc </ActiveDebugProfile >
6
6
</PropertyGroup >
7
7
<PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Debug|AnyCPU'" >
8
8
<DebuggerFlavor >ProjectDebugger</DebuggerFlavor >
Original file line number Diff line number Diff line change 3
3
pkill FVim
4
4
dotnet build -c Release fvim.fsproj
5
5
sudo rm -rf /usr/share/fvim/*
6
- sudo cp -r bin/Release/net5 .0/* /usr/share/fvim/
6
+ sudo cp -r bin/Release/net6 .0/* /usr/share/fvim/
You can’t perform that action at this time.
0 commit comments