initial work for net7 support
Some checks failed
Run tests on push / Run tests (push) Has been cancelled
Some checks failed
Run tests on push / Run tests (push) Has been cancelled
This commit is contained in:
parent
cacaba167d
commit
08a20653ed
6 changed files with 8 additions and 34 deletions
|
@ -59,6 +59,6 @@ jobs:
|
|||
body: ${{ env.release_body }}
|
||||
files: |-
|
||||
VoiceAttack-Framework/bin/Release/alterNERDtive.YAVAPF.*nupkg
|
||||
VoiceAttack-Framework/bin/Release/net48/VoiceAttack-Framework.*
|
||||
VoiceAttack-Framework/bin/Release/net7/VoiceAttack-Framework.*
|
||||
draft: true
|
||||
api_key: '${{ secrets.RELEASE_TOKEN }}'
|
||||
|
|
2
.github/workflows/create-release.yaml
vendored
2
.github/workflows/create-release.yaml
vendored
|
@ -44,7 +44,7 @@ jobs:
|
|||
- name: Draft release
|
||||
uses: ncipollo/release-action@v1
|
||||
with:
|
||||
artifacts: "VoiceAttack-Framework/bin/Release/alterNERDtive.YAVAPF.*nupkg,VoiceAttack-Framework/bin/Release/net48/VoiceAttack-Framework.*"
|
||||
artifacts: "VoiceAttack-Framework/bin/Release/alterNERDtive.YAVAPF.*nupkg,VoiceAttack-Framework/bin/Release/net7/VoiceAttack-Framework.*"
|
||||
bodyFile: "CHANGELOG.md"
|
||||
draft: true
|
||||
token: ${{ secrets.RELEASE_TOKEN }}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net48</TargetFramework>
|
||||
<TargetFramework>net7</TargetFramework>
|
||||
<RootNamespace>alterNERDtive.Example</RootNamespace>
|
||||
<Nullable>enable</Nullable>
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
|||
<ItemGroup>
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="VoiceAttack">
|
||||
<HintPath>C:\Program Files\VoiceAttack\VoiceAttack.exe</HintPath>
|
||||
<HintPath>..\VoiceAttack.exe</HintPath>
|
||||
<Private>False</Private>
|
||||
<EmbedInteropTypes>False</EmbedInteropTypes>
|
||||
</Reference>
|
||||
|
|
26
ExamplePlugin/Properties/Settings.Designer.cs
generated
26
ExamplePlugin/Properties/Settings.Designer.cs
generated
|
@ -1,26 +0,0 @@
|
|||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.42000
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace alterNERDtive.Example.Properties {
|
||||
|
||||
|
||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.3.0.0")]
|
||||
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
|
||||
|
||||
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
|
||||
|
||||
public static Settings Default {
|
||||
get {
|
||||
return defaultInstance;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net48</TargetFramework>
|
||||
<TargetFramework>net7</TargetFramework>
|
||||
<RootNamespace>VoiceAttack_Framework_Test</RootNamespace>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net48</TargetFrameworks>
|
||||
<TargetFrameworks>net7</TargetFrameworks>
|
||||
<RootNamespace>alterNERDtive.Yavapf</RootNamespace>
|
||||
<PackageId>alterNERDtive.YAVAPF</PackageId>
|
||||
<Version>0.2.0</Version>
|
||||
|
@ -45,7 +45,7 @@
|
|||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="VoiceAttack">
|
||||
<HintPath>C:\Program Files\VoiceAttack\VoiceAttack.exe</HintPath>
|
||||
<HintPath>..\VoiceAttack.exe</HintPath>
|
||||
<Private>False</Private>
|
||||
<EmbedInteropTypes>False</EmbedInteropTypes>
|
||||
</Reference>
|
||||
|
|
Loading…
Reference in a new issue