更换存储路径,解决临时存储数据无效问题

CHL
Miyu Kawaii 1 year ago
parent cbdb281c98
commit 538b0e786a

Binary file not shown.

@ -28,6 +28,8 @@ namespace WpfApp2
private EditorViewModel editorViewModel = new();
private string JSONstring;
private string OutPut;
private string openPath = Directory.GetCurrentDirectory() + "\\SourceFile";
private string savePath = Directory.GetCurrentDirectory() + "\\testOutput.json";
public MainWindow()
{
InitializeComponent();
@ -53,7 +55,12 @@ namespace WpfApp2
private void TreeView_Loaded(object sender, RoutedEventArgs e)
{
ExplorerTreeView.Items.Clear();
var path = @"E:\Works\software636\src\WpfApp2\WpfApp2\SourceFile";
var path = openPath;
///var path = @"E:\Works\software636\src\WpfApp2\WpfApp2\SourceFile";
if(!Directory.Exists(openPath))
{
Directory.CreateDirectory(openPath);
}
var rootNode = CreateFileList(path);
ExplorerTreeView.ItemsSource = rootNode;
}
@ -168,7 +175,7 @@ namespace WpfApp2
outPut = JsonConvert.DeserializeObject<List<Charactor>>(result);
Outpulist.ItemsSource = outPut;
editorViewModel.charactors = outPut;
editorViewModel.SaveJsonToFile("E:\\Works\\software636\\src\\WpfApp2\\WpfApp2\\OutputFile\\testOutput.json", editorViewModel.charactors);
editorViewModel.SaveJsonToFile(savePath, editorViewModel.charactors);
}
private async void TextBox_TextChanged(object sender, TextChangedEventArgs e)
@ -176,9 +183,9 @@ namespace WpfApp2
await Task.Delay(1000);
System.Windows.Controls.TextBox textBox = (System.Windows.Controls.TextBox)sender;
int lineIndex = textBox.GetLineIndexFromCharacterIndex(textBox.CaretIndex);
outPut[lineIndex].message = textBox.Text;
editorViewModel.charactors = outPut;
editorViewModel.SaveJsonToFile("E:\\Works\\software636\\src\\WpfApp2\\WpfApp2\\OutputFile\\testOutput.json", editorViewModel.charactors);
List<Charactor> chara = getNewList(outPut);
editorViewModel.charactors = chara;
editorViewModel.SaveJsonToFile(savePath, chara);
}
private void openFile_Click(object sender, RoutedEventArgs e)
@ -195,20 +202,23 @@ namespace WpfApp2
private void save_Click(object sender, RoutedEventArgs e)
{
editorViewModel.charactors = outPut;
editorViewModel.SaveJsonToFile("E:\\Works\\software636\\src\\WpfApp2\\WpfApp2\\OutputFile\\testOutput.json", editorViewModel.charactors);
List<Charactor> chara = getNewList(outPut);
editorViewModel.charactors = chara;
editorViewModel.SaveJsonToFile(savePath, chara);
}
private void saveTo_Click(object sender, RoutedEventArgs e)
{
editorViewModel.charactors = outPut;
OutPut = JsonConvert.SerializeObject(outPut);
List<Charactor> chara = getNewList(outPut);
editorViewModel.charactors = chara;
OutPut = JsonConvert.SerializeObject(chara);
SaveFileDialog saveFileDialog = new SaveFileDialog();
saveFileDialog.Filter = "JSON文件|*.json";
if (saveFileDialog.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
if (saveFileDialog.FileName != "")
{
savePath = saveFileDialog.FileName;
FileStream fs = (FileStream)saveFileDialog.OpenFile();
byte[] gein = Encoding.UTF8.GetBytes(OutPut);
fs.Write(gein, 0, gein.Length);
@ -221,5 +231,19 @@ namespace WpfApp2
{
System.Windows.Application.Current.Shutdown();
}
private List<Charactor> getNewList(List<Charactor> list)
{
var chara = new List<Charactor>();
foreach (Charactor cha in outPut)
{
chara.Add(new Charactor()
{
name = cha.name,
message = cha.message,
});
}
return chara;
}
}
}

@ -1 +1 @@
[{"name":"将臣","message":"……”"},{"name":null,"message":"按照紫蝶的话,决定吹夜风。"},{"name":null,"message":"话虽如此,也不是没有目的的夜晚散步。"},{"name":"将臣","message":"“——呼。”"},{"name":null,"message":"一边笔直地挥下竹刀,一边吸引左脚。"},{"name":null,"message":"突然停住的竹刀。另外,笔直地举起,把吸引的左脚向后下降。"},{"name":"将臣","message":"“——呼。”"},{"name":null,"message":"然后再次挥动竹刀的同时,这次右脚下降。"},{"name":null,"message":"就这样一直保持着正面的姿态,脑子里却一直在想事情。"},{"name":"将臣","message":"“回去了……不回去了……回去了……不回去了。”"},{"name":null,"message":"每次挥下竹刀,都会说出那样的话。"},{"name":null,"message":"话虽如此,因为不是花占卜,所以也不是有确切的结束。"},{"name":null,"message":"一想到这一点,手臂的动作自然地变得缓慢了。"},{"name":"将臣","message":"“……嗯……”"},{"name":null,"message":"并不是什么让人烦恼的事。"},{"name":"将臣","message":"“结果,我想怎么做,就这样而已。”"},{"name":null,"message":"如果你想回到适合居住的街道就回去。"},{"name":null,"message":"也不是再也回不来了。祖父和廉太郎们也在。"},{"name":null,"message":"只要想来,马上就能再来。"},{"name":null,"message":"相反,如果你想在这里多待一会儿,那也就说出来就好了。"},{"name":null,"message":"也可以在旅馆和廉太郎家受到照顾吧。"},{"name":null,"message":"应该不会有那么讨厌的表情……大概吧。"},{"name":null,"message":"所以,只要给出答案……。"},{"name":"将臣","message":"“像这样烦恼的话……应该是想留下来吧。”"},{"name":null,"message":"为什么胸口不舒服呢?"},{"name":null,"message":"有什么东西卡住了,怎么也做不到,很恶心……。"},{"name":"将臣","message":"“不能断言留下来,这是最好的理由吧……?”"},{"name":"将臣","message":"“光是明白了这一点就值得挥动竹刀吗?”"},{"name":null,"message":"运动很好,差不多该回房间了吧。"},{"name":"将臣","message":"“……话说回来,里面还有灯。”"},{"name":null,"message":"也许连那样的事情都没注意到,视野变得狭窄了。"},{"name":"将臣","message":"“有人在吗?”"},{"name":null,"message":"进去一看,那里有一个意外的身影。"},{"name":null,"message":"以认真的表情跳舞的朝武先生的身姿。"},{"name":null,"message":"虽然是在舞蹈的供奉上看了好几次的样子,但是在这样的时间里看还是第一次呢。"},{"name":null,"message":"大部分都是在日落之前结束的。"},{"name":null,"message":"恐怕到现在为止都是考虑到在山上驱魔的吧。"},{"name":"将臣","message":"“……”"},{"name":null,"message":"没有注意到我的事吗,凛然的气氛不破坏继续飞舞的朝武先生。"},{"name":null,"message":"还是那么厉害的集中力啊。"},{"name":null,"message":"没有混乱的动作,已经渗透到身体里了。"},{"name":null,"message":"和确认每一个动作的我的样子完全不同。"},{"name":null,"message":"被那美丽所吸引……一见钟情。"},{"name":"将臣","message":"“(……这是你第几次看得入迷了?)”"},{"name":"将臣","message":"“(至今为止看过好几次的舞,现在也这样看得入迷了。)”"},{"name":"将臣","message":"“(……)”"},{"name":null,"message":"然后我一直静静地眺望着,直到朝武的舞蹈结束。"},{"name":"芳乃","message":"“……啊……”"},{"name":"将臣","message":"“辛苦了,朝武先生。”"},{"name":"芳乃","message":"“啊,啊,有地,你在干什么?连竹刀都拿着……”"},{"name":"芳乃","message":"“有可疑的人吗?”"},{"name":"将臣","message":"“不是的。我只是假装而已。随便借一下院内。”"},{"name":"芳乃","message":"“我想这也没关系……从这个时间开始?弄不好的话有地先生会被当成可疑的人哦?”"},{"name":"将臣","message":"“……也许确实如此。”"},{"name":"芳乃","message":"“嗯,我想晚上参拜的人应该没有……”"},{"name":"将臣","message":"“朝武才是。为什么要从这个时间开始跳舞?”"},{"name":"芳乃","message":"“那个……爸爸和茉子说今天可以休息。”"},{"name":"芳乃","message":"“虽然试着按照那句话休息了一下……但是怎么也静不下来。”"},{"name":null,"message":"那么长的时间里,每天都不缺吧。"},{"name":null,"message":"我的训练并没有那么熟悉身体。"},{"name":null,"message":"如果不烦恼的话,大概很高兴休息了吧。"}]
[{"name":"将臣","message":"”cha“"},{"name":null,"message":"按照紫蝶的话,决定吹夜风。"},{"name":null,"message":"话虽如此,也不是没有目的的夜晚散步。"},{"name":"将臣","message":"“——呼。”"},{"name":null,"message":"一边笔直地挥下竹刀,一边吸引左脚。"},{"name":null,"message":"突然停住的竹刀。另外,笔直地举起,把吸引的左脚向后下降。"},{"name":"将臣","message":"“——呼。”"},{"name":null,"message":"然后再次挥动竹刀的同时,这次右脚下降。"},{"name":null,"message":"就这样一直保持着正面的姿态,脑子里却一直在想事情。"},{"name":"将臣","message":"“回去了……不回去了……回去了……不回去了。”"},{"name":null,"message":"每次挥下竹刀,都会说出那样的话。"},{"name":null,"message":"话虽如此,因为不是花占卜,所以也不是有确切的结束。"},{"name":null,"message":"一想到这一点,手臂的动作自然地变得缓慢了。"},{"name":"将臣","message":"“……嗯……”"},{"name":null,"message":"sbasbuiasb"},{"name":"将臣","message":"“结果,我想怎么做,就这样而已。”"},{"name":null,"message":"如果你想回到适合居住的街道就回去。"},{"name":null,"message":"也不是再也回不来了。祖父和廉太郎们也在。"},{"name":null,"message":"只要想来,马上就能再来。"},{"name":null,"message":"相反,如果你想在这里多待一会儿,那也就说出来就好了。"},{"name":null,"message":"也可以在旅馆和廉太郎家受到照顾吧。"},{"name":null,"message":"应该不会有那么讨厌的表情……大概吧。"},{"name":null,"message":"所以,只要给出答案……。"},{"name":"将臣","message":"“像这样烦恼的话……应该是想留下来吧。”"},{"name":null,"message":"为什么胸口不舒服呢?"},{"name":null,"message":"有什么东西卡住了,怎么也做不到,很恶心……。"},{"name":"将臣","message":"“不能断言留下来,这是最好的理由吧……?”"},{"name":"将臣","message":"“光是明白了这一点就值得挥动竹刀吗?”"},{"name":null,"message":"运动很好,差不多该回房间了吧。"},{"name":"将臣","message":"“……话说回来,里面还有灯。”"},{"name":null,"message":"也许连那样的事情都没注意到,视野变得狭窄了。"},{"name":"将臣","message":"“有人在吗?”"},{"name":null,"message":"进去一看,那里有一个意外的身影。"},{"name":null,"message":"以认真的表情跳舞的朝武先生的身姿。"},{"name":null,"message":"虽然是在舞蹈的供奉上看了好几次的样子,但是在这样的时间里看还是第一次呢。"},{"name":null,"message":"大部分都是在日落之前结束的。"},{"name":null,"message":"恐怕到现在为止都是考虑到在山上驱魔的吧。"},{"name":"将臣","message":"“……”"},{"name":null,"message":"没有注意到我的事吗,凛然的气氛不破坏继续飞舞的朝武先生。"},{"name":null,"message":"还是那么厉害的集中力啊。"},{"name":null,"message":"没有混乱的动作,已经渗透到身体里了。"},{"name":null,"message":"和确认每一个动作的我的样子完全不同。"},{"name":null,"message":"被那美丽所吸引……一见钟情。"},{"name":"将臣","message":"“(……这是你第几次看得入迷了?)”"},{"name":"将臣","message":"“(至今为止看过好几次的舞,现在也这样看得入迷了。)”"},{"name":"将臣","message":"“(……)”"},{"name":null,"message":"然后我一直静静地眺望着,直到朝武的舞蹈结束。"},{"name":"芳乃","message":"“……啊……”"},{"name":"将臣","message":"“辛苦了,朝武先生。”"},{"name":"芳乃","message":"“啊,啊,有地,你在干什么?连竹刀都拿着……”"},{"name":"芳乃","message":"“有可疑的人吗?”"},{"name":"将臣","message":"“不是的。我只是假装而已。随便借一下院内。”"},{"name":"芳乃","message":"“我想这也没关系……从这个时间开始?弄不好的话有地先生会被当成可疑的人哦?”"},{"name":"将臣","message":"“……也许确实如此。”"},{"name":"芳乃","message":"“嗯,我想晚上参拜的人应该没有……”"},{"name":"将臣","message":"“朝武才是。为什么要从这个时间开始跳舞?”"},{"name":"芳乃","message":"“那个……爸爸和茉子说今天可以休息。”"},{"name":"芳乃","message":"“虽然试着按照那句话休息了一下……但是怎么也静不下来。”"},{"name":null,"message":"那么长的时间里,每天都不缺吧。"},{"name":null,"message":"我的训练并没有那么熟悉身体。"},{"name":null,"message":"如果不烦恼的话,大概很高兴休息了吧。"}]

@ -0,0 +1,211 @@
[
{
"name": "将臣",
"message": "「………」"
},
{
"message": "ムラサメちゃんの言葉に従い、夜風に当たることにした。"
},
{
"message": "と言っても、あてのない夜の散歩というわけではない。"
},
{
"name": "将臣",
"message": "「――フッ」"
},
{
"message": "竹刀を真っ直ぐ振りおろしながら、左足を引き付ける。"
},
{
"message": "ピタリと止めた竹刀。また、真っ直ぐに振り上げ、引きつけた左足を後ろに下げた。"
},
{
"name": "将臣",
"message": "「――フッ」"
},
{
"message": "そして再び竹刀を振り下ろすのと同時に、今度は右足を下げる。"
},
{
"message": "こうして正面素振りを続けながらも、頭の中はずっと考え事をしたままだ。"
},
{
"name": "将臣",
"message": "「帰るっ……帰らないっ……帰るっ……帰らないっ」"
},
{
"message": "竹刀を振り下ろす度に、そんなことを口にする。"
},
{
"message": "とはいえ花占いじゃないんだから、きっちりした終わりがあるわけでもない。"
},
{
"message": "それを思うと、自然と腕の動きがゆっくりになっていった。"
},
{
"name": "将臣",
"message": "「……ふぅー……」"
},
{
"message": "別に、頭を悩ませるほどの事じゃない。"
},
{
"name": "将臣",
"message": "「結局、俺がどうしたいか、それだけなんだよな」"
},
{
"message": "住みやすい街に戻りたいなら戻ればいい。"
},
{
"message": "二度と戻って来れないわけでもない。祖父ちゃんや、廉太郎たちもいる。"
},
{
"message": "来たいと思えば、すぐにまた来られる。"
},
{
"message": "逆に、もう少しここにいたいのなら、それも言えばいいだけだ。"
},
{
"message": "旅館や、廉太郎の家にお世話になることもできるだろう。"
},
{
"message": "そんな嫌な顔はされないはずだ……多分。"
},
{
"message": "だから、答えを出してさえしまえば……。"
},
{
"name": "将臣",
"message": "「こんな風に悩むってことは……残りたいって思ってるってことだろうけど」"
},
{
"message": "胸がスッキリしないのはなんでだろう?"
},
{
"message": "何かがひっかかって、どうしようもなく気持ち悪い……。"
},
{
"name": "将臣",
"message": "「残るって言い切れないのは、それが一番の理由かな……?」"
},
{
"name": "将臣",
"message": "「それがわかっただけでも竹刀を振った価値があるかな」"
},
{
"message": "いい運動になったし、そろそろ部屋に戻ろうか。"
},
{
"name": "将臣",
"message": "「……っていうか、まだ奥に灯りが」"
},
{
"message": "そんなことにも気付かないぐらい、視野が狭まっていたのかもしれない。"
},
{
"name": "将臣",
"message": "「誰かいるのかな?」"
},
{
"message": "中に入ってみると、そこには意外な姿があった。"
},
{
"message": "真剣な表情で、舞を踊る朝武さんの姿。"
},
{
"message": "舞の奉納などで何度も見た姿ではあるけれど、こんな時間に見るのは初めてだな。"
},
{
"message": "大抵は日が沈む前に終わらせてしまう。"
},
{
"message": "おそらく、今までは山でのお祓いを考慮してだったんだろう。"
},
{
"name": "将臣",
"message": "「………」"
},
{
"message": "俺の事に気付いていないのか、凛とした雰囲気を崩すことなく舞い続ける朝武さん。"
},
{
"message": "相変わらず凄い集中力だよなぁ。"
},
{
"message": "乱れることのないその動きは、もはや身体にしみついた動き。"
},
{
"message": "一つ一つの動きを確認してる俺の素振りとは全然違う。"
},
{
"message": "その美しさに目を奪われるというか……見惚れてしまう。"
},
{
"name": "将臣",
"message": "「(……こうして見惚れるの、何度目だろう?)」"
},
{
"name": "将臣",
"message": "「(今までに何度も見たことある舞。なのに、今もこうして見惚れてしまう)」"
},
{
"name": "将臣",
"message": "「(………)」"
},
{
"message": "そうして俺は、朝武さんの舞が終わるまで、静かに眺め続けていた。"
},
{
"name": "芳乃",
"message": "「……はぁ……」"
},
{
"name": "将臣",
"message": "「お疲れ様、朝武さん」"
},
{
"name": "芳乃",
"message": "「え、あ、有地さん、何してるんですか? 竹刀まで持って……」"
},
{
"name": "芳乃",
"message": "「不審者でもいましたか?」"
},
{
"name": "将臣",
"message": "「違う違う。ちょっと素振りをしてたんだ。勝手に境内を借りて」"
},
{
"name": "芳乃",
"message": "「それは構わないと思いますが……こんな時間から? 下手したら有地さんが不審者にされますよ?」"
},
{
"name": "将臣",
"message": "「……確かにそうかも」"
},
{
"name": "芳乃",
"message": "「まあ、夜に参る人なんてそういないとは思いますが……」"
},
{
"name": "将臣",
"message": "「朝武さんこそ。どうしてこんな時間から舞を?」"
},
{
"name": "芳乃",
"message": "「それが……お父さんや茉子からは今日ぐらいは休んでいいんじゃないかと言われて」"
},
{
"name": "芳乃",
"message": "「その言葉に従って休んではみたものの……どうにもこうにも落ち着かなくて」"
},
{
"message": "それだけ長い間、欠かさずに毎日続けてたってことなんだろう。"
},
{
"message": "俺のトレーニングは、そこまで身体に馴染んだりはしてない。"
},
{
"message": "悩んでなかったら、多分喜んで休んでいただろう。"
}
]

@ -0,0 +1,211 @@
[
{
"name": "将臣",
"message": "「………」"
},
{
"message": "ムラサメちゃんの言葉に従い、夜風に当たることにした。"
},
{
"message": "と言っても、あてのない夜の散歩というわけではない。"
},
{
"name": "将臣",
"message": "「――フッ」"
},
{
"message": "竹刀を真っ直ぐ振りおろしながら、左足を引き付ける。"
},
{
"message": "ピタリと止めた竹刀。また、真っ直ぐに振り上げ、引きつけた左足を後ろに下げた。"
},
{
"name": "将臣",
"message": "「――フッ」"
},
{
"message": "そして再び竹刀を振り下ろすのと同時に、今度は右足を下げる。"
},
{
"message": "こうして正面素振りを続けながらも、頭の中はずっと考え事をしたままだ。"
},
{
"name": "将臣",
"message": "「帰るっ……帰らないっ……帰るっ……帰らないっ」"
},
{
"message": "竹刀を振り下ろす度に、そんなことを口にする。"
},
{
"message": "とはいえ花占いじゃないんだから、きっちりした終わりがあるわけでもない。"
},
{
"message": "それを思うと、自然と腕の動きがゆっくりになっていった。"
},
{
"name": "将臣",
"message": "「……ふぅー……」"
},
{
"message": "別に、頭を悩ませるほどの事じゃない。"
},
{
"name": "将臣",
"message": "「結局、俺がどうしたいか、それだけなんだよな」"
},
{
"message": "住みやすい街に戻りたいなら戻ればいい。"
},
{
"message": "二度と戻って来れないわけでもない。祖父ちゃんや、廉太郎たちもいる。"
},
{
"message": "来たいと思えば、すぐにまた来られる。"
},
{
"message": "逆に、もう少しここにいたいのなら、それも言えばいいだけだ。"
},
{
"message": "旅館や、廉太郎の家にお世話になることもできるだろう。"
},
{
"message": "そんな嫌な顔はされないはずだ……多分。"
},
{
"message": "だから、答えを出してさえしまえば……。"
},
{
"name": "将臣",
"message": "「こんな風に悩むってことは……残りたいって思ってるってことだろうけど」"
},
{
"message": "胸がスッキリしないのはなんでだろう?"
},
{
"message": "何かがひっかかって、どうしようもなく気持ち悪い……。"
},
{
"name": "将臣",
"message": "「残るって言い切れないのは、それが一番の理由かな……?」"
},
{
"name": "将臣",
"message": "「それがわかっただけでも竹刀を振った価値があるかな」"
},
{
"message": "いい運動になったし、そろそろ部屋に戻ろうか。"
},
{
"name": "将臣",
"message": "「……っていうか、まだ奥に灯りが」"
},
{
"message": "そんなことにも気付かないぐらい、視野が狭まっていたのかもしれない。"
},
{
"name": "将臣",
"message": "「誰かいるのかな?」"
},
{
"message": "中に入ってみると、そこには意外な姿があった。"
},
{
"message": "真剣な表情で、舞を踊る朝武さんの姿。"
},
{
"message": "舞の奉納などで何度も見た姿ではあるけれど、こんな時間に見るのは初めてだな。"
},
{
"message": "大抵は日が沈む前に終わらせてしまう。"
},
{
"message": "おそらく、今までは山でのお祓いを考慮してだったんだろう。"
},
{
"name": "将臣",
"message": "「………」"
},
{
"message": "俺の事に気付いていないのか、凛とした雰囲気を崩すことなく舞い続ける朝武さん。"
},
{
"message": "相変わらず凄い集中力だよなぁ。"
},
{
"message": "乱れることのないその動きは、もはや身体にしみついた動き。"
},
{
"message": "一つ一つの動きを確認してる俺の素振りとは全然違う。"
},
{
"message": "その美しさに目を奪われるというか……見惚れてしまう。"
},
{
"name": "将臣",
"message": "「(……こうして見惚れるの、何度目だろう?)」"
},
{
"name": "将臣",
"message": "「(今までに何度も見たことある舞。なのに、今もこうして見惚れてしまう)」"
},
{
"name": "将臣",
"message": "「(………)」"
},
{
"message": "そうして俺は、朝武さんの舞が終わるまで、静かに眺め続けていた。"
},
{
"name": "芳乃",
"message": "「……はぁ……」"
},
{
"name": "将臣",
"message": "「お疲れ様、朝武さん」"
},
{
"name": "芳乃",
"message": "「え、あ、有地さん、何してるんですか? 竹刀まで持って……」"
},
{
"name": "芳乃",
"message": "「不審者でもいましたか?」"
},
{
"name": "将臣",
"message": "「違う違う。ちょっと素振りをしてたんだ。勝手に境内を借りて」"
},
{
"name": "芳乃",
"message": "「それは構わないと思いますが……こんな時間から? 下手したら有地さんが不審者にされますよ?」"
},
{
"name": "将臣",
"message": "「……確かにそうかも」"
},
{
"name": "芳乃",
"message": "「まあ、夜に参る人なんてそういないとは思いますが……」"
},
{
"name": "将臣",
"message": "「朝武さんこそ。どうしてこんな時間から舞を?」"
},
{
"name": "芳乃",
"message": "「それが……お父さんや茉子からは今日ぐらいは休んでいいんじゃないかと言われて」"
},
{
"name": "芳乃",
"message": "「その言葉に従って休んではみたものの……どうにもこうにも落ち着かなくて」"
},
{
"message": "それだけ長い間、欠かさずに毎日続けてたってことなんだろう。"
},
{
"message": "俺のトレーニングは、そこまで身体に馴染んだりはしてない。"
},
{
"message": "悩んでなかったら、多分喜んで休んでいただろう。"
}
]

@ -0,0 +1 @@
[{"name":"将臣","message":"“……”"},{"name":null,"message":"按照紫蝶的话,决定吹夜风。"},{"name":null,"message":"话虽如此,也不是没有目的的夜晚散步。"},{"name":"将臣","message":"“——呼。”"},{"name":null,"message":"一边笔直地挥下竹刀,一边吸引左脚。"},{"name":null,"message":"突然停住的竹刀。另外,笔直地举起,把吸引的左脚向后下降。"},{"name":"将臣","message":"“——呼。”"},{"name":null,"message":"然后再次挥动竹刀的同时,这次右脚下降。"},{"name":null,"message":"就这样一直保持着正面的姿态,脑子里却一直在想事情。"},{"name":"将臣","message":"“回去了……不回去了……回去了……不回去了。”"},{"name":null,"message":"每次挥下竹刀,都会说出那样的话。"},{"name":null,"message":"话虽如此,因为不是花占卜,所以也不是有确切的结束。"},{"name":null,"message":"一想到这一点,手臂的动作自然地变得缓慢了。"},{"name":"将臣","message":"“……嗯……”"},{"name":null,"message":"并不是什么让人烦恼的事。"},{"name":"将臣","message":"“结果,我想怎么做,就这样而已。”"},{"name":null,"message":"如果你想回到适合居住的街道就回去。"},{"name":null,"message":"也不是再也回不来了。祖父和廉太郎们也在。"},{"name":null,"message":"只要想来,马上就能再来。"},{"name":null,"message":"相反,如果你想在这里多待一会儿,那也就说出来就好了。"},{"name":null,"message":"也可以在旅馆和廉太郎家受到照顾吧。"},{"name":null,"message":"应该不会有那么讨厌的表情……大概吧。"},{"name":null,"message":"所以,只要给出答案……。"},{"name":"将臣","message":"“像这样烦恼的话……应该是想留下来吧。”"},{"name":null,"message":"为什么胸口不舒服呢?"},{"name":null,"message":"有什么东西卡住了,怎么也做不到,很恶心……。"},{"name":"将臣","message":"“不能断言留下来,这是最好的理由吧……?”"},{"name":"将臣","message":"“光是明白了这一点就值得挥动竹刀吗?”"},{"name":null,"message":"运动很好,差不多该回房间了吧。"},{"name":"将臣","message":"“……话说回来,里面还有灯。”"},{"name":null,"message":"也许连那样的事情都没注意到,视野变得狭窄了。"},{"name":"将臣","message":"“有人在吗?”"},{"name":null,"message":"进去一看,那里有一个意外的身影。"},{"name":null,"message":"以认真的表情跳舞的朝武先生的身姿。"},{"name":null,"message":"虽然是在舞蹈的供奉上看了好几次的样子,但是在这样的时间里看还是第一次呢。"},{"name":null,"message":"大部分都是在日落之前结束的。"},{"name":null,"message":"恐怕到现在为止都是考虑到在山上驱魔的吧。"},{"name":"将臣","message":"“……”"},{"name":null,"message":"没有注意到我的事吗,凛然的气氛不破坏继续飞舞的朝武先生。"},{"name":null,"message":"还是那么厉害的集中力啊。"},{"name":null,"message":"没有混乱的动作,已经渗透到身体里了。"},{"name":null,"message":"和确认每一个动作的我的样子完全不同。"},{"name":null,"message":"被那美丽所吸引……一见钟情。"},{"name":"将臣","message":"“(……这是你第几次看得入迷了?)”"},{"name":"将臣","message":"“(至今为止看过好几次的舞,现在也这样看得入迷了。)”"},{"name":"将臣","message":"“(……)”"},{"name":null,"message":"然后我一直静静地眺望着,直到朝武的舞蹈结束。"},{"name":"芳乃","message":"“……啊……”"},{"name":"将臣","message":"“辛苦了,朝武先生。”"},{"name":"芳乃","message":"“啊,啊,有地,你在干什么?连竹刀都拿着……”"},{"name":"芳乃","message":"“有可疑的人吗?”"},{"name":"将臣","message":"“不是的。我只是假装而已。随便借一下院内。”"},{"name":"芳乃","message":"“我想这也没关系……从这个时间开始?弄不好的话有地先生会被当成可疑的人哦?”"},{"name":"将臣","message":"“……也许确实如此。”"},{"name":"芳乃","message":"“嗯,我想晚上参拜的人应该没有……”"},{"name":"将臣","message":"“朝武才是。为什么要从这个时间开始跳舞?”"},{"name":"芳乃","message":"“那个……爸爸和茉子说今天可以休息。”"},{"name":"芳乃","message":"“虽然试着按照那句话休息了一下……但是怎么也静不下来。”"},{"name":null,"message":"那么长的时间里,每天都不缺吧。"},{"name":null,"message":"我的训练并没有那么熟悉身体。"},{"name":null,"message":"如果不烦恼的话,大概很高兴休息了吧。"}]

@ -0,0 +1,109 @@
{
"format": 1,
"restore": {
"E:\\Works\\software636\\src\\WpfApp2\\WpfApp2\\WpfApp2.csproj": {}
},
"projects": {
"E:\\Works\\software636\\src\\WpfApp2\\WpfApp2\\WpfApp2.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "E:\\Works\\software636\\src\\WpfApp2\\WpfApp2\\WpfApp2.csproj",
"projectName": "WpfApp2",
"projectPath": "E:\\Works\\software636\\src\\WpfApp2\\WpfApp2\\WpfApp2.csproj",
"packagesPath": "C:\\Users\\82590\\.nuget\\packages\\",
"outputPath": "E:\\Works\\software636\\src\\WpfApp2\\WpfApp2\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\82590\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0-windows10.0.19041.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0-windows10.0.19041": {
"targetAlias": "net6.0-windows10.0.19041.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0-windows10.0.19041": {
"targetAlias": "net6.0-windows10.0.19041.0",
"dependencies": {
"CommunityToolkit.Mvvm": {
"target": "Package",
"version": "[8.2.1, )"
},
"Newtonsoft.Json": {
"target": "Package",
"version": "[13.0.3, )"
},
"System.Drawing.Common": {
"target": "Package",
"version": "[7.0.0, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Ref",
"version": "[6.0.24, 6.0.24]"
},
{
"name": "Microsoft.NETCore.App.Host.win-x64",
"version": "[6.0.24, 6.0.24]"
},
{
"name": "Microsoft.NETCore.App.Ref",
"version": "[6.0.24, 6.0.24]"
},
{
"name": "Microsoft.Windows.SDK.NET.Ref",
"version": "[10.0.19041.29, 10.0.19041.29]"
},
{
"name": "Microsoft.WindowsDesktop.App.Ref",
"version": "[6.0.24, 6.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
},
"Microsoft.Windows.SDK.NET.Ref": {
"privateAssets": "all"
},
"Microsoft.WindowsDesktop.App": {
"privateAssets": "none"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.403\\RuntimeIdentifierGraph.json"
}
}
}
}
}

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\82590\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.5.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\82590\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup>
</Project>

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)communitytoolkit.mvvm\8.2.1\buildTransitive\netstandard2.1\CommunityToolkit.Mvvm.targets" Condition="Exists('$(NuGetPackageRoot)communitytoolkit.mvvm\8.2.1\buildTransitive\netstandard2.1\CommunityToolkit.Mvvm.targets')" />
</ImportGroup>
</Project>

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0.19041.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows10.0.19041.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1,17 @@
is_global = true
build_property.ApplicationManifest = app.manifest
build_property.StartupObject = WpfApp2.App
build_property.ApplicationDefaultFont =
build_property.ApplicationHighDpiMode =
build_property.ApplicationUseCompatibleTextRendering =
build_property.ApplicationVisualStyles =
build_property.TargetFramework = net6.0-windows10.0.19041.0
build_property.TargetPlatformMinVersion = 10.0.19041.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = WpfApp2_0i1y1ymd_wpftmp
build_property.ProjectDir = E:\Works\software636\src\WpfApp2\WpfApp2\

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0.19041.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows10.0.19041.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1,17 @@
is_global = true
build_property.ApplicationManifest = app.manifest
build_property.StartupObject = WpfApp2.App
build_property.ApplicationDefaultFont =
build_property.ApplicationHighDpiMode =
build_property.ApplicationUseCompatibleTextRendering =
build_property.ApplicationVisualStyles =
build_property.TargetFramework = net6.0-windows10.0.19041.0
build_property.TargetPlatformMinVersion = 10.0.19041.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = WpfApp2_4tof2unj_wpftmp
build_property.ProjectDir = E:\Works\software636\src\WpfApp2\WpfApp2\

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0.19041.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows10.0.19041.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1,17 @@
is_global = true
build_property.ApplicationManifest = app.manifest
build_property.StartupObject = WpfApp2.App
build_property.ApplicationDefaultFont =
build_property.ApplicationHighDpiMode =
build_property.ApplicationUseCompatibleTextRendering =
build_property.ApplicationVisualStyles =
build_property.TargetFramework = net6.0-windows10.0.19041.0
build_property.TargetPlatformMinVersion = 10.0.19041.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = WpfApp2_d3tpg3lf_wpftmp
build_property.ProjectDir = E:\Works\software636\src\WpfApp2\WpfApp2\

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0.19041.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows10.0.19041.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1,17 @@
is_global = true
build_property.ApplicationManifest = app.manifest
build_property.StartupObject = WpfApp2.App
build_property.ApplicationDefaultFont =
build_property.ApplicationHighDpiMode =
build_property.ApplicationUseCompatibleTextRendering =
build_property.ApplicationVisualStyles =
build_property.TargetFramework = net6.0-windows10.0.19041.0
build_property.TargetPlatformMinVersion = 10.0.19041.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = WpfApp2_rsmwc3hb_wpftmp
build_property.ProjectDir = E:\Works\software636\src\WpfApp2\WpfApp2\

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0.19041.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows10.0.19041.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1,17 @@
is_global = true
build_property.ApplicationManifest = app.manifest
build_property.StartupObject = WpfApp2.App
build_property.ApplicationDefaultFont =
build_property.ApplicationHighDpiMode =
build_property.ApplicationUseCompatibleTextRendering =
build_property.ApplicationVisualStyles =
build_property.TargetFramework = net6.0-windows10.0.19041.0
build_property.TargetPlatformMinVersion = 10.0.19041.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = WpfApp2_vqejjjno_wpftmp
build_property.ProjectDir = E:\Works\software636\src\WpfApp2\WpfApp2\

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0.19041.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows10.0.19041.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1,17 @@
is_global = true
build_property.ApplicationManifest = app.manifest
build_property.StartupObject = WpfApp2.App
build_property.ApplicationDefaultFont =
build_property.ApplicationHighDpiMode =
build_property.ApplicationUseCompatibleTextRendering =
build_property.ApplicationVisualStyles =
build_property.TargetFramework = net6.0-windows10.0.19041.0
build_property.TargetPlatformMinVersion = 10.0.19041.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = WpfApp2_xi22fe5y_wpftmp
build_property.ProjectDir = E:\Works\software636\src\WpfApp2\WpfApp2\

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0.19041.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows10.0.19041.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1,17 @@
is_global = true
build_property.ApplicationManifest = app.manifest
build_property.StartupObject = WpfApp2.App
build_property.ApplicationDefaultFont =
build_property.ApplicationHighDpiMode =
build_property.ApplicationUseCompatibleTextRendering =
build_property.ApplicationVisualStyles =
build_property.TargetFramework = net6.0-windows10.0.19041.0
build_property.TargetPlatformMinVersion = 10.0.19041.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = WpfApp2_xzkca2lb_wpftmp
build_property.ProjectDir = E:\Works\software636\src\WpfApp2\WpfApp2\
Loading…
Cancel
Save